Skip to content

Commit

Permalink
Bump version: 2.0.0 → 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
linozen committed Jul 18, 2023
1 parent abe3877 commit c6e5a4c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.0
current_version = 2.1.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<release>(a|b|rc)?)(?P<releasenumber>\d*)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -243,7 +243,7 @@ Git. This uses [pre-commit](https://pre-commit.com/). Once you
```yaml
repos:
- repo: https://github.com/fsfe/reuse-tool
rev: v2.0.0
rev: v2.1.0
hooks:
- id: reuse
```
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -76,7 +76,7 @@
# The full version, including alpha/beta/rc tags.
release = get_version("reuse")
except PackageNotFoundError:
release = "2.0.0"
release = "2.1.0"

# The short X.Y.Z version.
version = ".".join(release.split(".")[:3])
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -7,7 +7,7 @@

[tool.poetry]
name = "reuse"
version = "2.0.0"
version = "2.1.0"
description = "reuse is a tool for compliance with the REUSE recommendations."
authors = [
"Free Software Foundation Europe <contact@fsfe.org>",
Expand Down
2 changes: 1 addition & 1 deletion src/reuse/__init__.py
Expand Up @@ -31,7 +31,7 @@
__version__ = version("reuse")
except PackageNotFoundError:
# package is not installed
__version__ = "2.0.0"
__version__ = "2.1.0"

__author__ = "Carmen Bianca Bakker"
__email__ = "carmenbianca@fsfe.org"
Expand Down

0 comments on commit c6e5a4c

Please sign in to comment.