diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5f4576e..7e569e4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 1.0.0 commit = True tag = True diff --git a/README.rst b/README.rst index 82d0692..408b489 100644 --- a/README.rst +++ b/README.rst @@ -147,6 +147,7 @@ Changelog ========= - Next version - unreleased +- 1.0.0 - 2017-01-10 - Allow for db properties to be passed to the connect method. *Probably incompatible to code based on previous diff --git a/jaydebeapi/__init__.py b/jaydebeapi/__init__.py index b5985ff..d33014a 100644 --- a/jaydebeapi/__init__.py +++ b/jaydebeapi/__init__.py @@ -17,7 +17,7 @@ # License along with JayDeBeApi. If not, see # . -__version_info__ = (0, 2, 0) +__version_info__ = (1, 0, 0) __version__ = ".".join(str(i) for i in __version_info__) import datetime diff --git a/setup.py b/setup.py index 84b08be..167f168 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ if not sys.platform.lower().startswith('java'): setup( #basic package data name = 'JayDeBeApi', - version = '0.2.0', + version = '1.0.0', author = 'Bastian Bowe', author_email = 'bastian.dev@gmail.com', license = 'GNU LGPL',