diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a3b3d83..39294c4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0 +current_version = 2.0.1 commit = True tag = True diff --git a/pyetrade/__init__.py b/pyetrade/__init__.py index d42d0ef..9bf9b06 100644 --- a/pyetrade/__init__.py +++ b/pyetrade/__init__.py @@ -1,5 +1,5 @@ """Init for pyetrade module """ -__version__ = "2.0.0" +__version__ = "2.0.1" from . import authorization # noqa: F401 from .authorization import ETradeOAuth, ETradeAccessManager # noqa: F401 diff --git a/setup.py b/setup.py index e18f371..86956c5 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from codecs import open from os import path -__version__ = "2.0.0" +__version__ = "2.0.1" here = path.abspath(path.dirname(__file__)) # Get the long description from the README file