From 8ffe6bd52735f7c9ae1b4cc444fcd5d86ae756f4 Mon Sep 17 00:00:00 2001 From: baztian Date: Fri, 12 Jun 2020 08:58:12 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.2.2=20=E2=86=92=201.2.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.rst | 1 + jaydebeapi/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5ccc43a..f9aa4ea 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.2 +current_version = 1.2.3 commit = True tag = True diff --git a/README.rst b/README.rst index 9ad29f5..56d0eb7 100644 --- a/README.rst +++ b/README.rst @@ -170,6 +170,7 @@ Changelog ========= - Next version - unreleased +- 1.2.3 - 2020-06-12 - Make pip install for Python 2 work by changing JPype1 requirement to older version diff --git a/jaydebeapi/__init__.py b/jaydebeapi/__init__.py index 6a29591..a890c3d 100644 --- a/jaydebeapi/__init__.py +++ b/jaydebeapi/__init__.py @@ -17,7 +17,7 @@ # License along with JayDeBeApi. If not, see # . -__version_info__ = (1, 2, 2) +__version_info__ = (1, 2, 3) __version__ = ".".join(str(i) for i in __version_info__) import datetime diff --git a/setup.py b/setup.py index 5a1e024..67a2d1d 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ install_requires = [ 'JPype1 ; python_version > "2.7" and platform_python_implem setup( #basic package data name = 'JayDeBeApi', - version = '1.2.2', + version = '1.2.3', author = 'Bastian Bowe', author_email = 'bastian.dev@gmail.com', license = 'GNU LGPL',