Skip to content

Commit

Permalink
Restore config IP's to original value, push 2.0.1 to release status
Browse files Browse the repository at this point in the history
  • Loading branch information
mishaturnbull committed Mar 28, 2018
1 parent 3a8441b commit 8c4732e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ target = src/gui.py

ver_major = 2
ver_minor = 0
ver_patch = 0
ver_patch = 1

hiddenimports = --hidden-import urllib3
hiddenimports += --hidden-import pyspeedtest
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "PySpeedMonitor",
"version": "2.0.0",
"version": "2.0.1",
"dependencies": {
"pyspeedtest": "*",
"urllib3": "*",
Expand Down
2 changes: 1 addition & 1 deletion src/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

__major__ = 2
__minor__ = 0
__patch__ = 0
__patch__ = 1

__version__ = '.'.join(map(str, [__major__, __minor__, __patch__]))
__int_version__ = int(''.join(map(str, [__major__, __minor__, __patch__])))
Expand Down
4 changes: 3 additions & 1 deletion src/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@
[UploadURLs]
a = 172.30.141.127
b = 25.9.117.52
b = 134.129.156.163
c = mcv156.163.und.nodak.edu
d = 25.9.117.52
"""

try:
Expand Down

0 comments on commit 8c4732e

Please sign in to comment.