Skip to content

Commit 0a6d83f

Browse files
authored
Merge pull request #1101 from carmenbianca/release-5.0.1
Release 5.0.1
2 parents d2ab913 + fd7b76c commit 0a6d83f

File tree

8 files changed

+358
-438
lines changed

8 files changed

+358
-438
lines changed

CHANGELOG.md

+8
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.1 - 2024-11-14
29+
30+
### Fixed
31+
32+
- Fix readthedocs build.
33+
2834
## v5.0.0 - 2024-10-17
2935

3036
This is a big release for a small change set. With this release, the tool
@@ -106,6 +112,8 @@ subtly improved release of the much bigger version 3.2.
106112
unparseable. This is now fixed. (#1047)
107113
- Fixed a bug where `REUSE.toml` did not correctly apply its annotations to
108114
files which have an accompanying `.license` file. (#1058)
115+
- When running `reuse download SPDX-IDENTIFIER+`, download `SPDX-IDENTIFIER`
116+
instead. This also works for `reuse download --all`. (#1098)
109117

110118
## v4.0.3 - 2024-07-08
111119

CONTRIBUTING.md

+2
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ possible, run `poetry lock --no-update`.
116116
- `make update-resources`
117117
- `protokolo compile -f version vx.y.z`
118118
- Alter changelog
119+
- `poetry lock` (otherwise documentation won't generate;
120+
<https://github.com/readthedocs/readthedocs.org/issues/11624>)
119121
- Do some final tweaks/bugfixes (and alter changelog)
120122
- `make test-release`
121123
- `pip install -i https://test.pypi.org/simple reuse` and test the package.

README.md

+2-2
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.0
251+
rev: v5.0.1
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.0
266+
rev: v5.0.1
267267
hooks:
268268
- id: reuse-lint-file
269269
```

changelog.d/fixed/strip-plus.md

-2
This file was deleted.

docs/conf.py

+1-1
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.0"
34+
release = "5.0.1"
3535

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

poetry.lock

+342-430
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[tool.poetry]
99
name = "reuse"
10-
version = "5.0.0"
10+
version = "5.0.1"
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.0"
109+
current_version = "v5.0.1"
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

+1-1
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.0"
37+
__version__ = "5.0.1"
3838

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

0 commit comments

Comments
 (0)