From bafd6d7683dec1189d7a477489f6b8770bffc0dd Mon Sep 17 00:00:00 2001 From: Carmen Bianca BAKKER Date: Mon, 8 Apr 2024 10:03:56 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=203.0.1=20=E2=86=92=203.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- src/reuse/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cec2a4db..f4b7a28a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.1 +current_version = 3.0.2 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?P(a|b|rc)?)(?P\d*) diff --git a/README.md b/README.md index c6015268..a095f686 100644 --- a/README.md +++ b/README.md @@ -246,7 +246,7 @@ Git. This uses [pre-commit](https://pre-commit.com/). Once you ```yaml repos: - repo: https://github.com/fsfe/reuse-tool - rev: v3.0.1 + rev: v3.0.2 hooks: - id: reuse ``` diff --git a/docs/conf.py b/docs/conf.py index 6ef4f2e0..e9ba7e79 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -75,7 +75,7 @@ # The full version, including alpha/beta/rc tags. release = get_version("reuse") except PackageNotFoundError: - release = "3.0.1" + release = "3.0.2" # The short X.Y.Z version. version = ".".join(release.split(".")[:3]) diff --git a/pyproject.toml b/pyproject.toml index 9c9f184a..5ac2c964 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ [tool.poetry] name = "reuse" -version = "3.0.1" +version = "3.0.2" description = "reuse is a tool for compliance with the REUSE recommendations." authors = [ "Free Software Foundation Europe ", diff --git a/src/reuse/__init__.py b/src/reuse/__init__.py index 54020406..1aad2155 100644 --- a/src/reuse/__init__.py +++ b/src/reuse/__init__.py @@ -31,7 +31,7 @@ __version__ = version("reuse") except PackageNotFoundError: # package is not installed - __version__ = "3.0.1" + __version__ = "3.0.2" __author__ = "Carmen Bianca Bakker" __email__ = "carmenbianca@fsfe.org"