Skip to content

Commit

Permalink
version number bump
Browse files Browse the repository at this point in the history
  • Loading branch information
arm61 committed Aug 18, 2018
1 parent fc63468 commit 09129e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pylj/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# versioning
MAJOR = 1
MINOR = 0
MICRO = 1
MICRO = 2
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

Expand Down

0 comments on commit 09129e9

Please sign in to comment.