diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1dd9301..3589c74 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.2 +current_version = 1.2.0 commit = True tag = True @@ -13,4 +13,3 @@ parse = (?P\d+), (?P\d+), (?P\d+) search = - Next version - unreleased replace = - Next version - unreleased - {new_version} - {now:%Y-%m-%d} - diff --git a/README.rst b/README.rst index 43547ac..566c09d 100644 --- a/README.rst +++ b/README.rst @@ -159,6 +159,7 @@ Changelog ========= - Next version - unreleased +- 1.2.0 - 2020-05-22 - Added compatibility to JPype1 0.7.2+ (thanks to @dpd) - Support `with` statement (thanks to @Szczepanov) diff --git a/jaydebeapi/__init__.py b/jaydebeapi/__init__.py index a28461a..f319cde 100644 --- a/jaydebeapi/__init__.py +++ b/jaydebeapi/__init__.py @@ -17,7 +17,7 @@ # License along with JayDeBeApi. If not, see # . -__version_info__ = (1, 1, 2) +__version_info__ = (1, 2, 0) __version__ = ".".join(str(i) for i in __version_info__) import datetime diff --git a/setup.py b/setup.py index 7615963..a1238b6 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 = '1.1.2', + version = '1.2.0', author = 'Bastian Bowe', author_email = 'bastian.dev@gmail.com', license = 'GNU LGPL',