Skip to content

Commit

Permalink
Bump version: 1.1.2 → 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
linozen committed Jun 21, 2023
1 parent b50c930 commit d637ed2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[bumpversion]
current_version = 1.1.2
current_version = 2.0.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<release>(a|b|rc)?)(?P<releasenumber>\d*)
serialize =
serialize =
{major}.{minor}.{patch}{release}{releasenumber}
{major}.{minor}.{patch}

[bumpversion:part:release]
values =
values =
a
b
rc
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
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: v1.1.2
rev: v2.0.0
hooks:
- id: reuse
```
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
# The full version, including alpha/beta/rc tags.
release = version("reuse")
except PackageNotFoundError:
release = "1.1.2"
release = "2.0.0"

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

[tool.poetry]
name = "reuse"
version = "1.1.2"
version = "2.0.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
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
__version__ = version("reuse")
except PackageNotFoundError:
# package is not installed
__version__ = "1.1.2"
__version__ = "2.0.0"

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

0 comments on commit d637ed2

Please sign in to comment.