Skip to content

Commit

Permalink
Merge pull request #1101 from carmenbianca/release-5.0.1
Browse files Browse the repository at this point in the history
Release 5.0.1
  • Loading branch information
carmenbianca authored Nov 14, 2024
2 parents d2ab913 + fd7b76c commit 0a6d83f
Show file tree
Hide file tree
Showing 8 changed files with 358 additions and 438 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ CLI command and its behaviour. There are no guarantees of stability for the

<!-- protokolo-section-tag -->

## v5.0.1 - 2024-11-14

### Fixed

- Fix readthedocs build.

## v5.0.0 - 2024-10-17

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

## v4.0.3 - 2024-07-08

Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ possible, run `poetry lock --no-update`.
- `make update-resources`
- `protokolo compile -f version vx.y.z`
- Alter changelog
- `poetry lock` (otherwise documentation won't generate;
<https://github.com/readthedocs/readthedocs.org/issues/11624>)
- Do some final tweaks/bugfixes (and alter changelog)
- `make test-release`
- `pip install -i https://test.pypi.org/simple reuse` and test the package.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0
rev: v5.0.1
hooks:
- id: reuse
```
Expand All @@ -263,7 +263,7 @@ use the following configuration:
```yaml
repos:
- repo: https://github.com/fsfe/reuse-tool
rev: v5.0.0
rev: v5.0.1
hooks:
- id: reuse-lint-file
```
Expand Down
2 changes: 0 additions & 2 deletions changelog.d/fixed/strip-plus.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# The full version, including alpha/beta/rc tags.
release = get_version("reuse")
except PackageNotFoundError:
release = "5.0.0"
release = "5.0.1"

# The short X.Y.Z version.
version = ".".join(release.split(".")[:3])
Expand Down
772 changes: 342 additions & 430 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

[tool.poetry]
name = "reuse"
version = "5.0.0"
version = "5.0.1"
description = "reuse is a tool for compliance with the REUSE recommendations."
authors = [
"Free Software Foundation Europe <[email protected]>",
Expand Down Expand Up @@ -106,7 +106,7 @@ requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"

[bumpver]
current_version = "v5.0.0"
current_version = "v5.0.1"
version_pattern = "vMAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "Bump version: {old_version} → {new_version}"
tag_message = "{new_version}"
Expand Down
2 changes: 1 addition & 1 deletion src/reuse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
__version__ = version("reuse")
except PackageNotFoundError:
# package is not installed
__version__ = "5.0.0"
__version__ = "5.0.1"

__author__ = "Carmen Bianca Bakker"
__email__ = "[email protected]"
Expand Down

0 comments on commit 0a6d83f

Please sign in to comment.