File tree Expand file tree Collapse file tree 5 files changed +12
-6
lines changed Expand file tree Collapse file tree 5 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,12 @@ CLI command and its behaviour. There are no guarantees of stability for the
25
25
26
26
<!-- protokolo-section-tag -->
27
27
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
+
28
34
## v5.0.1 - 2024-11-14
29
35
30
36
### Fixed
Original file line number Diff line number Diff line change @@ -248,7 +248,7 @@ Git. This uses [pre-commit](https://pre-commit.com/). Once you
248
248
``` yaml
249
249
repos :
250
250
- repo : https://github.com/fsfe/reuse-tool
251
- rev : v5.0.1
251
+ rev : v5.0.2
252
252
hooks :
253
253
- id : reuse
254
254
` ` `
@@ -263,7 +263,7 @@ use the following configuration:
263
263
` ` ` yaml
264
264
repos:
265
265
- repo: https://github.com/fsfe/reuse-tool
266
- rev: v5.0.1
266
+ rev: v5.0.2
267
267
hooks:
268
268
- id: reuse-lint-file
269
269
` ` `
Original file line number Diff line number Diff line change 31
31
# The full version, including alpha/beta/rc tags.
32
32
release = get_version ("reuse" )
33
33
except PackageNotFoundError :
34
- release = "5.0.1 "
34
+ release = "5.0.2 "
35
35
36
36
# The short X.Y.Z version.
37
37
version = "." .join (release .split ("." )[:3 ])
Original file line number Diff line number Diff line change 7
7
8
8
[tool .poetry ]
9
9
name = " reuse"
10
- version = " 5.0.1 "
10
+ version = " 5.0.2 "
11
11
description = " reuse is a tool for compliance with the REUSE recommendations."
12
12
authors = [
13
13
" Free Software Foundation Europe <[email protected] >" ,
@@ -106,7 +106,7 @@ requires = ["poetry-core>=1.1.0"]
106
106
build-backend = " poetry.core.masonry.api"
107
107
108
108
[bumpver ]
109
- current_version = " v5.0.1 "
109
+ current_version = " v5.0.2 "
110
110
version_pattern = " vMAJOR.MINOR.PATCH[PYTAGNUM]"
111
111
commit_message = " Bump version: {old_version} → {new_version}"
112
112
tag_message = " {new_version}"
Original file line number Diff line number Diff line change 34
34
__version__ = version ("reuse" )
35
35
except PackageNotFoundError :
36
36
# package is not installed
37
- __version__ = "5.0.1 "
37
+ __version__ = "5.0.2 "
38
38
39
39
__author__ = "Carmen Bianca Bakker"
40
40
You can’t perform that action at this time.
0 commit comments