Skip to content
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

Bump to REUSE Specification 3.3 #1069

Merged
merged 1 commit into from
Sep 10, 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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ recommendations.
- Documentation: <https://reuse.readthedocs.io> and <https://reuse.software>
- Source code: <https://github.com/fsfe/reuse-tool>
- PyPI: <https://pypi.python.org/pypi/reuse>
- REUSE: 3.2
- REUSE: 3.3
- Python: 3.8+

## Table of contents
Expand Down Expand Up @@ -179,7 +179,7 @@ To check against the recommendations, use `reuse lint`:
~/Projects/reuse-tool $ reuse lint
[...]

Congratulations! Your project is compliant with version 3.2 of the REUSE Specification :-)
Congratulations! Your project is compliant with version 3.3 of the REUSE Specification :-)
```

This tool can do various more things, detailed in the documentation. Here a
Expand Down
3 changes: 3 additions & 0 deletions changelog.d/changed/00_spec-3.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Bumped REUSE Specification version to
[version 3.3](https://reuse.software/spec-3.3). This is a small change.
(#1069)
2 changes: 1 addition & 1 deletion src/reuse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
__author__ = "Carmen Bianca Bakker"
__email__ = "[email protected]"
__license__ = "Apache-2.0 AND CC0-1.0 AND CC-BY-SA-4.0 AND GPL-3.0-or-later"
__REUSE_version__ = "3.2"
__REUSE_version__ = "3.3"

_LOGGER = logging.getLogger(__name__)

Expand Down
Loading