Skip to content

Commit

Permalink
Bump version: 0.1.4 → 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
woile committed Sep 15, 2017
1 parent 8c09f8a commit 3673a00
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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 = 0.1.4
current_version = 0.1.5
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
year = '2016'
author = 'Santiago Fraire Willemoes'
copyright = '{0}, {1}'.format(year, author)
version = release = '0.1.4'
version = release = '0.1.5'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def read(*names, **kwargs):

setup(
name='fsmpy',
version='0.1.4',
version='0.1.5',
license='BSD',
description='Minimal state machine',
long_description='%s\n%s' % (
Expand All @@ -36,7 +36,7 @@ def read(*names, **kwargs):
url='https://github.com/Woile/pyfsm',
packages=find_packages('src'),
package_dir={'': 'src'},
download_url='https://github.com/Woile/pyfsm/tree/0.1.4',
download_url='https://github.com/Woile/pyfsm/tree/0.1.5',
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
include_package_data=True,
zip_safe=False,
Expand Down
2 changes: 1 addition & 1 deletion src/fsm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from .exceptions import InvalidTransition # NOQA
from .fsm import FiniteStateMachineMixin # NOQA

__version__ = "0.1.4"
__version__ = "0.1.5"

0 comments on commit 3673a00

Please sign in to comment.