Skip to content

Commit

Permalink
version number bump
Browse files Browse the repository at this point in the history
  • Loading branch information
arm61 committed Dec 10, 2018
1 parent 4691b26 commit b3a2afd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# built documents.
#
# The short X.Y version.
version = '1.1.16'
version = '1.2.0'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
4 changes: 2 additions & 2 deletions pylj/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ def __cite__(): # pragma: no cover
def __version__(): # pragma: no cover
"""This will print the number of the pylj version currently in use."""
major = 1
minor = 1
micro = 16
minor = 2
micro = 0
print('pylj-{:d}.{:d}.{:d}'.format(major, minor, micro))


Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

# versioning
MAJOR = 1
MINOR = 1
MICRO = 16
MINOR = 2
MICRO = 0
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

Expand Down

0 comments on commit b3a2afd

Please sign in to comment.