Skip to content

Commit

Permalink
Bump version: 1.2.0 → 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nazavode committed Jan 30, 2017
1 parent 959b6a4 commit 38f1294
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .bumpversion.cfg
@@ -1,9 +1,9 @@
[bumpversion]
commit = True
tag = True
current_version = 1.2.0
current_version = 1.2.1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
serialize =
{major}.{minor}.{patch}-{release}
{major}.{minor}.{patch}

Expand All @@ -12,3 +12,4 @@ serialize =
[bumpversion:file:src/automaton.py]

[bumpversion:file:docs/source/conf.py]

2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -65,7 +65,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = '1.2.0'
release = '1.2.1'
# The short X.Y version.
version = release.rsplit('.', 1)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -28,7 +28,7 @@

setup(
name="python-automaton",
version='1.2.0',
version='1.2.1',
description="Minimal finite-state machines",
long_description=long_description,
author="Federico Ficarelli",
Expand Down
2 changes: 1 addition & 1 deletion src/automaton.py
Expand Up @@ -30,7 +30,7 @@
__author__ = 'Federico Ficarelli'
__copyright__ = 'Copyright (c) 2015 Federico Ficarelli'
__license__ = 'Apache License Version 2.0'
__version__ = '1.2.0'
__version__ = '1.2.1'

VERSION = __version__
# bumpversion can only search for {current_version}
Expand Down

0 comments on commit 38f1294

Please sign in to comment.