diff --git a/docs/source/conf.py b/docs/source/conf.py index 09a6c38..f7e99a2 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,7 +60,7 @@ # built documents. # # The short X.Y version. -version = '1.2.0' +version = '1.2.1' # The full version, including alpha/beta/rc tags. release = version diff --git a/pylj/util.py b/pylj/util.py index f4fffd5..707d60f 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 = 2 - micro = 0 + micro = 1 print("pylj-{:d}.{:d}.{:d}".format(major, minor, micro)) diff --git a/setup.py b/setup.py index 614f5ef..5eb87a5 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ # versioning MAJOR = 1 MINOR = 2 -MICRO = 0 +MICRO = 1 ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)