8000 Release 5.0.2 by carmenbianca · Pull Request #1103 · fsfe/reuse-tool · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Release 5.0.2 #1103

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,19 @@ CLI command and its behaviour. There are no guarantees of stability for the

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

## 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

- Fix readthedocs build.

## v5.0.0 - 2024-10-17
## v5.0.0 - 2024-11-14

This is a big release for a small change set. With this release, the tool
becomes compatible with
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.1
rev: v5.0.2
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.1
rev: v5.0.2
hooks:
- id: reuse-lint-file
```
Expand Down
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.1"
release = "5.0.2"

# The short X.Y.Z version.
version = ".".join(release.split(".")[:3])
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
8000
Original file line number Diff line numberDiff line change
Expand Up @@ -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 <contact@fsfe.org>",
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.1"
current_version = "v5.0.2"
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.1"
__version__ = "5.0.2"

__author__ = "Carmen Bianca Bakker"
__email__ = "carmenbianca@fsfe.org"
Expand Down
Loading
0