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__)