diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 63ddfaa..5f4576e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.6 +current_version = 0.2.0 commit = True tag = True diff --git a/README.rst b/README.rst index c73e41d..648440a 100644 --- a/README.rst +++ b/README.rst @@ -168,6 +168,7 @@ Changelog ========= - Next version - unreleased +- 0.2.0 - 2015-04-26 - Python 3 support (requires JPype1 >= 0.6.0). diff --git a/jaydebeapi/__init__.py b/jaydebeapi/__init__.py index f769dbe..51c2b84 100644 --- a/jaydebeapi/__init__.py +++ b/jaydebeapi/__init__.py @@ -17,7 +17,7 @@ # License along with JayDeBeApi. If not, see # . -__version_info__ = (0, 1, 6) +__version_info__ = (0, 2, 0) __version__ = ".".join(str(i) for i in __version_info__) import datetime diff --git a/setup.py b/setup.py index 2a505cd..84b08be 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.1.6', + version = '0.2.0', author = 'Bastian Bowe', author_email = 'bastian.dev@gmail.com', license = 'GNU LGPL',