Skip to content

Commit

Permalink
Bump version: 1.0.0 → 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Oct 17, 2023
1 parent d3b2212 commit 05ba109
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.0
current_version = 1.1.0
commit = True
tag = True
parse = (?P<major>\d+)(\.(?P<minor>\d+))(\.(?P<patch>\d+))((?P<release>.)(?P<build>\d+))?
Expand Down
8 changes: 1 addition & 7 deletions ipypopout/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
version_info = (1, 0, 0, 'final')

_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}

__version__ = '%s.%s.%s%s' % (
version_info[0], version_info[1], version_info[2],
'' if version_info[3] == 'final' else _specifier_[version_info[3]]+str(version_info[4]))
__version__ = "1.1.0"

0 comments on commit 05ba109

Please sign in to comment.