Skip to content

Commit efd6d2a

Browse files
authored
Merge pull request #1103 from carmenbianca/release-5.0.2
Release 5.0.2
2 parents 45c58fa + 920b644 commit efd6d2a

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ CLI command and its behaviour. There are no guarantees of stability for the
2525

2626
<!-- protokolo-section-tag -->
2727

28+
## v5.0.2 - 2024-11-14
29+
30+
### Fixed
31+
32+
- The release date for the v5.0.0 entry in the change log was wrong.
33+
2834
## v5.0.1 - 2024-11-14
2935

3036
### Fixed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ Git. This uses [pre-commit](https://pre-commit.com/). Once you
248248
```yaml
249249
repos:
250250
- repo: https://github.com/fsfe/reuse-tool
251-
rev: v5.0.1
251+
rev: v5.0.2
252252
hooks:
253253
- id: reuse
254254
```
@@ -263,7 +263,7 @@ use the following configuration:
263263
```yaml
264264
repos:
265265
- repo: https://github.com/fsfe/reuse-tool
266-
rev: v5.0.1
266+
rev: v5.0.2
267267
hooks:
268268
- id: reuse-lint-file
269269
```

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# The full version, including alpha/beta/rc tags.
3232
release = get_version("reuse")
3333
except PackageNotFoundError:
34-
release = "5.0.1"
34+
release = "5.0.2"
3535

3636
# The short X.Y.Z version.
3737
version = ".".join(release.split(".")[:3])

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[tool.poetry]
99
name = "reuse"
10-
version = "5.0.1"
10+
version = "5.0.2"
1111
description = "reuse is a tool for compliance with the REUSE recommendations."
1212
authors = [
1313
"Free Software Foundation Europe <[email protected]>",
@@ -106,7 +106,7 @@ requires = ["poetry-core>=1.1.0"]
106106
build-backend = "poetry.core.masonry.api"
107107

108108
[bumpver]
109-
current_version = "v5.0.1"
109+
current_version = "v5.0.2"
110110
version_pattern = "vMAJOR.MINOR.PATCH[PYTAGNUM]"
111111
commit_message = "Bump version: {old_version} → {new_version}"
112112
tag_message = "{new_version}"

src/reuse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
__version__ = version("reuse")
3535
except PackageNotFoundError:
3636
# package is not installed
37-
__version__ = "5.0.1"
37+
__version__ = "5.0.2"
3838

3939
__author__ = "Carmen Bianca Bakker"
4040
__email__ = "[email protected]"

0 commit comments

Comments
 (0)