From 1d428e1afd1beeb40d374ad7b97af16d99dd76f1 Mon Sep 17 00:00:00 2001 From: Carmen Bianca BAKKER Date: Wed, 3 Jul 2024 18:53:49 +0200 Subject: [PATCH 1/2] =?UTF-8?q?Bump=20version:=20v4.0.1=20=E2=86=92=20v4.0?= =?UTF-8?q?.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 4 ++-- src/reuse/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ab930c1db..51f587a62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ [tool.poetry] name = "reuse" -version = "4.0.1" +version = "4.0.2" description = "reuse is a tool for compliance with the REUSE recommendations." authors = [ "Free Software Foundation Europe ", @@ -103,7 +103,7 @@ requires = ["poetry-core>=1.1.0"] build-backend = "poetry.core.masonry.api" [bumpver] -current_version = "v4.0.1" +current_version = "v4.0.2" version_pattern = "vMAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "Bump version: {old_version} → {new_version}" tag_message = "{new_version}" diff --git a/src/reuse/__init__.py b/src/reuse/__init__.py index 5bbee429a..7b98506c0 100644 --- a/src/reuse/__init__.py +++ b/src/reuse/__init__.py @@ -31,7 +31,7 @@ __version__ = version("reuse") except PackageNotFoundError: # package is not installed - __version__ = "4.0.1" + __version__ = "4.0.2" __author__ = "Carmen Bianca Bakker" __email__ = "carmenbianca@fsfe.org" From 3e352848b91a7676d203281b67901b331f460306 Mon Sep 17 00:00:00 2001 From: Carmen Bianca BAKKER Date: Wed, 3 Jul 2024 18:54:03 +0200 Subject: [PATCH 2/2] Compile change log Signed-off-by: Carmen Bianca BAKKER --- CHANGELOG.md | 8 ++++++++ changelog.d/fixed/merge.md | 3 --- 2 files changed, 8 insertions(+), 3 deletions(-) delete mode 100644 changelog.d/fixed/merge.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 35a4a4930..cdd2ff033 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,14 @@ CLI command and its behaviour. There are no guarantees of stability for the +## 4.0.2 - 2024-07-03 + +### Fixed + +- Repaired a bug that would cause a crash when running + `annotate --merge-copyrights` on a file that does not yet have a year in the + copyright statement. This bug was introduced in v4.0.1. (#1030) + ## 4.0.1 - 2024-07-03 ### Fixed diff --git a/changelog.d/fixed/merge.md b/changelog.d/fixed/merge.md deleted file mode 100644 index 937a13f26..000000000 --- a/changelog.d/fixed/merge.md +++ /dev/null @@ -1,3 +0,0 @@ -- Repaired a bug that would cause a crash when running - `annotate --merge-copyrights` on a file that does not yet have a year in the - copyright statement. This bug was introduced in v4.0.1. (#1030)