Skip to content

Commit

Permalink
Push version 1.6.0 to release status
Browse files Browse the repository at this point in the history
  • Loading branch information
mishaturnbull committed Mar 3, 2018
1 parent 82c81de commit 3e454a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ compiler = pyinstaller
target = src/gui.py

ver_major = 1
ver_minor = 5
ver_patch = 1
ver_minor = 6
ver_patch = 0

hiddenimports = --hidden-import urllib3
hiddenimports += --hidden-import pyspeedtest
Expand Down
4 changes: 2 additions & 2 deletions src/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"""

__major__ = 1
__minor__ = 5
__patch__ = 1
__minor__ = 6
__patch__ = 0

__version__ = '.'.join(map(str, [__major__, __minor__, __patch__]))
__int_version__ = int(''.join(map(str, [__major__, __minor__, __patch__])))
Expand Down

0 comments on commit 3e454a7

Please sign in to comment.