diff --git a/CHANGELOG.md b/CHANGELOG.md index e089f70f..2ff4e271 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,12 @@ CLI command and its behaviour. There are no guarantees of stability for the +## v5.0.2 - 2024-11-14 + +### Fixed + +- The release date for the v5.0.0 entry in the change log was wrong. + ## v5.0.1 - 2024-11-14 ### Fixed diff --git a/README.md b/README.md index bea45d7f..0525db72 100644 --- a/README.md +++ b/README.md @@ -248,7 +248,7 @@ Git. This uses [pre-commit](https://pre-commit.com/). Once you ```yaml repos: - repo: https://github.com/fsfe/reuse-tool - rev: v5.0.1 + rev: v5.0.2 hooks: - id: reuse ``` @@ -263,7 +263,7 @@ use the following configuration: ```yaml repos: - repo: https://github.com/fsfe/reuse-tool - rev: v5.0.1 + rev: v5.0.2 hooks: - id: reuse-lint-file ``` diff --git a/docs/conf.py b/docs/conf.py index f9b2a2ee..10602951 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -31,7 +31,7 @@ # The full version, including alpha/beta/rc tags. release = get_version("reuse") except PackageNotFoundError: - release = "5.0.1" + release = "5.0.2" # The short X.Y.Z version. version = ".".join(release.split(".")[:3]) diff --git a/pyproject.toml b/pyproject.toml index fc6caf6f..eb4c41f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ [tool.poetry] name = "reuse" -version = "5.0.1" +version = "5.0.2" description = "reuse is a tool for compliance with the REUSE recommendations." authors = [ "Free Software Foundation Europe ", @@ -106,7 +106,7 @@ requires = ["poetry-core>=1.1.0"] build-backend = "poetry.core.masonry.api" [bumpver] -current_version = "v5.0.1" +current_version = "v5.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 f358ee57..19b84931 100644 --- a/src/reuse/__init__.py +++ b/src/reuse/__init__.py @@ -34,7 +34,7 @@ __version__ = version("reuse") except PackageNotFoundError: # package is not installed - __version__ = "5.0.1" + __version__ = "5.0.2" __author__ = "Carmen Bianca Bakker" __email__ = "carmenbianca@fsfe.org"