Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Commit d9a2baf

Browse files
committed
Bump version: 2.0.0rc → 2.0.0
1 parent 7bf7f52 commit d9a2baf

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.bumpversion.cfg

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
[bumpversion]
2-
current_version = 2.0.0rc
2+
current_version = 2.0.0
33
commit = True
44
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>.*))?
5-
serialize =
5+
serialize =
66
{major}.{minor}.{patch}{release}
77
{major}.{minor}.{patch}
88
tag_name = {new_version}
99

1010
[bumpversion:part:release]
1111
optional_value = production
12-
values =
12+
values =
1313
rc
1414
production
1515

1616
[bumpversion:file:setup.py]
17+
1718
[bumpversion:file:src/pydocstyle/utils.py]
19+

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup
44

55
# Do not update the version manually - it is managed by `bumpversion`.
6-
version = '2.0.0rc'
6+
version = '2.0.0'
77

88
setup(
99
name='pydocstyle',

src/pydocstyle/utils.py

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

99

1010
# Do not update the version manually - it is managed by `bumpversion`.
11-
__version__ = '2.0.0rc'
11+
__version__ = '2.0.0'
1212
log = logging.getLogger(__name__)
1313

1414

0 commit comments

Comments
 (0)