diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3589c74..c6c1cc9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.0 +current_version = 1.2.1 commit = True tag = True diff --git a/README.rst b/README.rst index b377fde..bba9372 100644 --- a/README.rst +++ b/README.rst @@ -160,6 +160,7 @@ Changelog ========= - Next version - unreleased +- 1.2.1 - 2020-05-27 - Increased thread safety. Should resolve some of the `No suitable driver found` errors. (thanks to @thealmightygrant) diff --git a/jaydebeapi/__init__.py b/jaydebeapi/__init__.py index dc21895..7af7d59 100644 --- a/jaydebeapi/__init__.py +++ b/jaydebeapi/__init__.py @@ -17,7 +17,7 @@ # License along with JayDeBeApi. If not, see # . -__version_info__ = (1, 2, 0) +__version_info__ = (1, 2, 1) __version__ = ".".join(str(i) for i in __version_info__) import datetime diff --git a/setup.py b/setup.py index a1238b6..9a13285 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.2.0', + version = '1.2.1', author = 'Bastian Bowe', author_email = 'bastian.dev@gmail.com', license = 'GNU LGPL',