From b3a2afdccd48004481a82ebc257456db08791adb Mon Sep 17 00:00:00 2001 From: arm61 Date: Mon, 10 Dec 2018 11:09:57 +0000 Subject: [PATCH] version number bump --- docs/source/conf.py | 2 +- pylj/util.py | 4 ++-- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 60c587d..09a6c38 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,7 +60,7 @@ # built documents. # # The short X.Y version. -version = '1.1.16' +version = '1.2.0' # The full version, including alpha/beta/rc tags. release = version diff --git a/pylj/util.py b/pylj/util.py index 1f0fec8..4318359 100644 --- a/pylj/util.py +++ b/pylj/util.py @@ -220,8 +220,8 @@ def __cite__(): # pragma: no cover def __version__(): # pragma: no cover """This will print the number of the pylj version currently in use.""" major = 1 - minor = 1 - micro = 16 + minor = 2 + micro = 0 print('pylj-{:d}.{:d}.{:d}'.format(major, minor, micro)) diff --git a/setup.py b/setup.py index 4353dd5..5be3961 100644 --- a/setup.py +++ b/setup.py @@ -16,8 +16,8 @@ # versioning MAJOR = 1 -MINOR = 1 -MICRO = 16 +MINOR = 2 +MICRO = 0 ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)