Skip to content

Commit d637ed2

Browse files
committed
Bump version: 1.1.2 → 2.0.0
1 parent b50c930 commit d637ed2

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.bumpversion.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[bumpversion]
2-
current_version = 1.1.2
2+
current_version = 2.0.0
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<release>(a|b|rc)?)(?P<releasenumber>\d*)
6-
serialize =
6+
serialize =
77
{major}.{minor}.{patch}{release}{releasenumber}
88
{major}.{minor}.{patch}
99

1010
[bumpversion:part:release]
11-
values =
11+
values =
1212
a
1313
b
1414
rc

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ Git. This uses [pre-commit](https://pre-commit.com/). Once you
243243
```yaml
244244
repos:
245245
- repo: https://github.com/fsfe/reuse-tool
246-
rev: v1.1.2
246+
rev: v2.0.0
247247
hooks:
248248
- id: reuse
249249
```

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
# The full version, including alpha/beta/rc tags.
7676
release = version("reuse")
7777
except PackageNotFoundError:
78-
release = "1.1.2"
78+
release = "2.0.0"
7979

8080
# The short X.Y.Z version.
8181
version = ".".join(release.split(".")[:3])

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[tool.poetry]
99
name = "reuse"
10-
version = "1.1.2"
10+
version = "2.0.0"
1111
description = "reuse is a tool for compliance with the REUSE recommendations."
1212
authors = [
1313
"Free Software Foundation Europe <contact@fsfe.org>",

src/reuse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
__version__ = version("reuse")
3131
except PackageNotFoundError:
3232
# package is not installed
33-
__version__ = "1.1.2"
33+
__version__ = "2.0.0"
3434

3535
__author__ = "Carmen Bianca Bakker"
3636
__email__ = "carmenbianca@fsfe.org"

0 commit comments

Comments
 (0)