From d4172474d94d403dccc8c6f4bb08e066f06bb6fd Mon Sep 17 00:00:00 2001 From: Andrew McCluskey Date: Mon, 3 Jun 2019 09:35:29 +0100 Subject: [PATCH] bump version number --- 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 719b49c..8aea869 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,7 +60,7 @@ # built documents. # # The short X.Y version. -version = '1.3.2' +version = '1.3.3' # The full version, including alpha/beta/rc tags. release = version diff --git a/pylj/util.py b/pylj/util.py index 8d4c81b..cb63813 100644 --- a/pylj/util.py +++ b/pylj/util.py @@ -246,7 +246,7 @@ def __version__(): # pragma: no cover """This will print the number of the pylj version currently in use.""" major = 1 minor = 3 - micro = 2 + micro = 3 print("pylj-{:d}.{:d}.{:d}".format(major, minor, micro)) diff --git a/setup.py b/setup.py index 090b72d..c2b242d 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ # versioning MAJOR = 1 MINOR = 3 -MICRO = 2 +MICRO = 3 ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)