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

Commit

Permalink
Bump version: 2.0.0rc → 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nurdok committed Apr 18, 2017
1 parent 7bf7f52 commit d9a2baf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
[bumpversion]
current_version = 2.0.0rc
current_version = 2.0.0
commit = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>.*))?
serialize =
serialize =
{major}.{minor}.{patch}{release}
{major}.{minor}.{patch}
tag_name = {new_version}

[bumpversion:part:release]
optional_value = production
values =
values =
rc
production

[bumpversion:file:setup.py]

[bumpversion:file:src/pydocstyle/utils.py]

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup

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

setup(
name='pydocstyle',
Expand Down
2 changes: 1 addition & 1 deletion src/pydocstyle/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


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


Expand Down

0 comments on commit d9a2baf

Please sign in to comment.