From 646cb488b647fea237685153d37e7fd99ddeb3e7 Mon Sep 17 00:00:00 2001 From: arm61 Date: Sun, 2 Dec 2018 10:11:08 +0000 Subject: [PATCH] version number bump --- docs/source/conf.py | 2 +- pylj/util.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index c6cdbc6..60c587d 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.15' +version = '1.1.16' # The full version, including alpha/beta/rc tags. release = version diff --git a/pylj/util.py b/pylj/util.py index f432c30..b871433 100644 --- a/pylj/util.py +++ b/pylj/util.py @@ -231,7 +231,7 @@ def __version__(): # pragma: no cover """This will print the number of the pylj version currently in use.""" major = 1 minor = 1 - micro = 15 + micro = 16 print('pylj-{:d}.{:d}.{:d}'.format(major, minor, micro)) diff --git a/setup.py b/setup.py index 0e083d5..4353dd5 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ # versioning MAJOR = 1 MINOR = 1 -MICRO = 15 +MICRO = 16 ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)