From 09129e9075b33d9db786d1839042133f6a0f727b Mon Sep 17 00:00:00 2001 From: arm61 Date: Sat, 18 Aug 2018 21:47:55 +0100 Subject: [PATCH] version number bump --- pylj/util.py | 3 ++- setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pylj/util.py b/pylj/util.py index 1e98193..a8fa40e 100644 --- a/pylj/util.py +++ b/pylj/util.py @@ -226,13 +226,14 @@ def __cite__(): # pragma: no cover """This function will launch the Zenodo website for the latest release of pylj.""" webbrowser.open('https://zenodo.org/badge/latestdoi/119863480') + webbrowser.open('http://jose.theoj.org/papers/58daa1a1a564dc8e0f99ffcdae20eb1d') def __version__(): # pragma: no cover """This will print the number of the pylj version currently in use.""" major = 1 minor = 0 - micro = 1 + micro = 2 print('pylj-{:d}.{:d}.{:d}'.format(major, minor, micro)) diff --git a/setup.py b/setup.py index 1cbecb8..99f453d 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ # versioning MAJOR = 1 MINOR = 0 -MICRO = 1 +MICRO = 2 ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)