diff --git a/setup.cfg b/setup.cfg index 464f9009..c0a254da 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.7 +current_version = 2.0.0 commit = True tag = True diff --git a/setup.py b/setup.py index 58237dc3..4e26a9bd 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ def get_readme(): 'Topic :: Database', ], keywords='sqlalchemy finite state machine fsm', - version='1.1.7', + version='2.0.0', url='https://github.com/VRGhost/sqlalchemy-fsm', install_requires=[ 'SQLAlchemy>=1.0.0', diff --git a/sqlalchemy_fsm/__init__.py b/sqlalchemy_fsm/__init__.py index 537f9841..b5f1309c 100644 --- a/sqlalchemy_fsm/__init__.py +++ b/sqlalchemy_fsm/__init__.py @@ -7,4 +7,4 @@ from .transition import transition -__version__ = '1.1.7' \ No newline at end of file +__version__ = '2.0.0' \ No newline at end of file