From 05ed3ffb272c77d3059e8e841bde4b412761aa38 Mon Sep 17 00:00:00 2001 From: Carmen Bianca BAKKER Date: Tue, 10 Sep 2024 14:24:48 +0200 Subject: [PATCH] Bump to REUSE Specification 3.3 Signed-off-by: Carmen Bianca BAKKER --- README.md | 4 ++-- changelog.d/changed/00_spec-3.3.md | 3 +++ src/reuse/__init__.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 changelog.d/changed/00_spec-3.3.md diff --git a/README.md b/README.md index 33705fdc..66107ce9 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ recommendations. - Documentation: and - Source code: - PyPI: -- REUSE: 3.2 +- REUSE: 3.3 - Python: 3.8+ ## Table of contents @@ -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 diff --git a/changelog.d/changed/00_spec-3.3.md b/changelog.d/changed/00_spec-3.3.md new file mode 100644 index 00000000..823338dd --- /dev/null +++ b/changelog.d/changed/00_spec-3.3.md @@ -0,0 +1,3 @@ +- Bumped REUSE Specification version to + [version 3.3](https://reuse.software/spec-3.3). This is a small change. + (#1069) diff --git a/src/reuse/__init__.py b/src/reuse/__init__.py index 7325e9a7..d73cb9a3 100644 --- a/src/reuse/__init__.py +++ b/src/reuse/__init__.py @@ -36,7 +36,7 @@ __author__ = "Carmen Bianca Bakker" __email__ = "carmenbianca@fsfe.org" __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__)