Skip to content

Commit

Permalink
Bump version: 2.0.0 → 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
woile committed May 11, 2021
1 parent c768768 commit 83329b0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 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 = 2.0.0
current_version = 2.1.0
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 = '2.0.0'
version = release = '2.1.0'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
2 changes: 1 addition & 1 deletion 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, BaseFiniteStateMachineMixin # NOQA

__version__ = "2.0.0"
__version__ = "2.1.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fsmpy"
version = "2.0.0"
version = "2.1.0"
description = "Minimal state machine"
authors = ["Santiago Fraire Willemoes <[email protected]>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def read(*names, **kwargs):

setup(
name="fsmpy",
version="2.0.0",
version="2.1.0",
license="BSD",
description="Minimal state machine",
long_description="%s\n%s"
Expand All @@ -32,7 +32,7 @@ def read(*names, **kwargs):
author="Santiago Fraire Willemoes",
author_email="[email protected]",
url="https://github.com/Woile/pyfsm",
download_url="https://github.com/Woile/pyfsm/tree/2.0.0",
download_url="https://github.com/Woile/pyfsm/tree/2.1.0",
include_package_data=True,
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down

0 comments on commit 83329b0

Please sign in to comment.