Skip to content

Commit

Permalink
VERSION number bump
Browse files Browse the repository at this point in the history
  • Loading branch information
arm61 committed May 8, 2019
1 parent c2523ab commit cfb61a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -60,7 +60,7 @@
# built documents.
#
# The short X.Y version.
version = '1.3.0'
version = '1.3.1'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion pylj/util.py
Expand Up @@ -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 = 0
micro = 1
print("pylj-{:d}.{:d}.{:d}".format(major, minor, micro))


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

Expand Down

0 comments on commit cfb61a2

Please sign in to comment.