Bump version: 1.2.1 → 1.2.2

master
baztian 2020-06-04 17:50:50 +02:00
parent b3e323f596
commit dc8dc67a45
4 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.1
current_version = 1.2.2
commit = True
tag = True

View File

@ -160,6 +160,7 @@ Changelog
=========
- Next version - unreleased
- 1.2.2 - 2020-06-04
- Return (big) decimal types as long value if scale is zero (thanks
to @ministat)

View File

@ -17,7 +17,7 @@
# License along with JayDeBeApi. If not, see
# <http://www.gnu.org/licenses/>.
__version_info__ = (1, 2, 1)
__version_info__ = (1, 2, 2)
__version__ = ".".join(str(i) for i in __version_info__)
import datetime

View File

@ -27,7 +27,7 @@ if not sys.platform.lower().startswith('java'):
setup(
#basic package data
name = 'JayDeBeApi',
version = '1.2.1',
version = '1.2.2',
author = 'Bastian Bowe',
author_email = 'bastian.dev@gmail.com',
license = 'GNU LGPL',