Skip to content

Commit

Permalink
Bump version: 1.2.1 → 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nazavode committed Feb 5, 2017
1 parent c86c6a1 commit a66e886
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 1.2.1
current_version = 1.3.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
Expand Down
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.1'
release = '1.3.0'
# The short X.Y version.
version = release.rsplit('.', 1)[0]

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

setup(
name="python-automaton",
version='1.2.1',
version='1.3.0',
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.1'
__version__ = '1.3.0'

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

0 comments on commit a66e886

Please sign in to comment.