From 14d057a5d02f28cd8b05c2447b18b1c8bd5553da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armin=20T=C3=A4nzer?= Date: Fri, 13 Mar 2026 10:09:49 +0100 Subject: [PATCH 1/2] fix black linting error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Armin Tänzer --- tests/spdx3/writer/tag_value/test_write_document.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/spdx3/writer/tag_value/test_write_document.py b/tests/spdx3/writer/tag_value/test_write_document.py index 580c61b81..10d5d54c6 100644 --- a/tests/spdx3/writer/tag_value/test_write_document.py +++ b/tests/spdx3/writer/tag_value/test_write_document.py @@ -29,9 +29,7 @@ def test_render_creation_info(): output_str = io.StringIO() write_spdx_document(spdx_document, text_output=output_str) - assert ( - output_str.getvalue() - == """\ + assert output_str.getvalue() == """\ ## SPDX Document SPDXID: SPDXRef-FOO name: BAR @@ -42,4 +40,3 @@ def test_render_creation_info(): data license: CC0-1.0 elements: """ # noqa: W291 # elements: are printed with a space - ) From 5667af34125e5d5dca6213b44251b6d1a617ee0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armin=20T=C3=A4nzer?= Date: Fri, 13 Mar 2026 10:10:03 +0100 Subject: [PATCH 2/2] add changelog for upcoming release 0.8.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Armin Tänzer --- CHANGELOG.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 808f5e134..797be5ba9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ # Changelog -## v0.8.4 (2026-01-16) +## v0.8.5 (2026-03-13) + +### New features and changes + +* clean up `pyproject.toml` and `MANIFEST.in`, remove `appveyor.yml` +* make code conformant with PEP 484 + +### Contributors + +This release was made possible by the following contributors. Thank you very much! + +* Arthit Suriyawongkul @bact + +## v0.8.4 (2026-01-16) (unreleased) ### New features and changes