From 612ba798fd0835b08e5a8f9893c5277b5a5bb82f Mon Sep 17 00:00:00 2001 From: Carmen Bianca BAKKER Date: Tue, 28 May 2024 15:42:52 +0200 Subject: [PATCH] Bump REUSE spec Signed-off-by: Carmen Bianca BAKKER --- CHANGELOG.md | 1 + src/reuse/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b61431188..834a60f78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -65,6 +65,7 @@ CLI command and its behaviour. There are no guarantees of stability for the ### Changed +- Updated REUSE specification version to 3.2. (#994) - `.s` files now use the Python comment style as per GNU Assembler (gas). (#928) - Previously, any file that begins with `COPYING` or `LICENSE` was ignored. This has been changed. Now, files like `COPYING_README` are no longer ignored, but diff --git a/src/reuse/__init__.py b/src/reuse/__init__.py index 09fd31dba..2629d1214 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.0" +__REUSE_version__ = "3.2" _LOGGER = logging.getLogger(__name__)