Skip to content

Commit

Permalink
0.6.0.1 beta is now ready for release
Browse files Browse the repository at this point in the history
  • Loading branch information
o355 committed May 30, 2017
1 parent 2135d72 commit 23f06c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion configdefault.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
except:
open('updater//versioninfo.txt', 'w').close()
with open("updater//versioninfo.txt", 'a') as out:
out.write("0.6 beta")
out.write("0.6.0.1 beta")
out.close()

config = configparser.ConfigParser()
Expand Down
6 changes: 3 additions & 3 deletions keybackup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PyWeather API Key Backup - version 0.6 beta
# PyWeather API Key Backup - version 0.6.0.1 beta
# (c) 2017, o355, GNU GPL 3.0

import configparser
Expand All @@ -14,7 +14,7 @@
except:
open('updater//versioninfo.txt', 'w').close()
with open("updater//versioninfo.txt", 'a') as out:
out.write("0.6 beta")
out.write("0.6.0.1 beta")
out.close()

# See if the config is "provisioned". If it isn't, a KeyError will occur,
Expand Down Expand Up @@ -50,7 +50,7 @@
saveDirectory = 'backup//backkey.txt'
tracebacksEnabled = False

logger = logging.getLogger(name='pyweather_keybackup_0.6beta')
logger = logging.getLogger(name='pyweather_keybackup_0.6.0.1beta')
logformat = '%(asctime)s | %(levelname)s | %(message)s'
logging.basicConfig(format=logformat)

Expand Down
2 changes: 1 addition & 1 deletion pyweather.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
except:
open('updater//versioninfo.txt', 'w').close()
with open("updater//versioninfo.txt", 'a') as out:
out.write("0.6 beta")
out.write("0.6.0.1 beta")
out.close()


Expand Down

0 comments on commit 23f06c0

Please sign in to comment.