Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Jun 21, 2014
2 parents 75dcb0b + 013f29a commit 7b2bc74
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 7 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
Release History
===============

0.3.1 (2014-06-21)
------------------

* Fixed auto-installer for Windows OS (bug with %PATH% customisations)


0.3.0 (2014-06-21)
---------
------------------

* Allowed to pass multiple "SomePlatform" to install/uninstall commands
* Added "IDE Integration" section to README with Eclipse project examples
Expand Down
2 changes: 1 addition & 1 deletion platformio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (C) Ivan Kravets <[email protected]>
# See LICENSE for details.

VERSION = (0, 3, 0)
VERSION = (0, 3, 1)
__version__ = ".".join([str(s) for s in VERSION])

__title__ = "platformio"
Expand Down
2 changes: 1 addition & 1 deletion platformio/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get_command(self, ctx, name):


@command(cls=PlatformioCLI)
@version_option(__version__, "platformio")
@version_option(__version__, prog_name="platformio")
def cli():
pass

Expand Down
2 changes: 2 additions & 0 deletions scripts/get-platformio.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ def fix_winpython_pathenv():
# took these lines from the native "win_add2path.py"
pythonpath = os.path.dirname(CURINTERPRETER_PATH)
scripts = os.path.join(pythonpath, "Scripts")
if not os.path.isdir(scripts):
os.makedirs(scripts)

with winreg.CreateKey(winreg.HKEY_CURRENT_USER, u"Environment") as key:
try:
Expand Down

0 comments on commit 7b2bc74

Please sign in to comment.