Skip to content

Commit

Permalink
Bump version: 1.0.0-dev → 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
c4urself committed Jan 18, 2020
1 parent 7698510 commit 7054766
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 1.0.0-dev
current_version = 1.0.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
**unreleased**
**v1.0.0**
**v1.0.0-dev**
- Fix the spurious newline that bump2version adds when writing to bumpversion.cfg, thanks @kyluca #58
- Add Python3.8 support, thanks @florisla
Expand Down
2 changes: 1 addition & 1 deletion bumpversion/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "1.0.0-dev"
__version__ = "1.0.0"
__license__ = "MIT"
__title__ = "bumpversion"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='bump2version',
version='1.0.0-dev',
version='1.0.0',
url='https://github.com/c4urself/bump2version',
author='Christian Verkerk',
author_email='christianverkerk@ymail.com',
Expand Down

0 comments on commit 7054766

Please sign in to comment.