Merge branch 'release/v0.7.1' into develop

This commit is contained in:
Ivan Kravets
2014-10-06 23:28:12 +03:00
3 changed files with 7 additions and 2 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@
examples/ide-eclipse/.metadata
examples/ide-eclipse/RemoteSystemsTempFiles
docs/_build
dist

View File

@ -4,6 +4,9 @@ Release History
0.8.0 (?)
---------
0.7.1 (2014-10-06)
------------------
* Fixed bug with order for includes in conversation from INO/PDE to CPP
* Automatic detection of port on upload (`issue #15 <https://github.com/ivankravets/platformio/issues/15>`_)
* Fixed lib update crashing when no libs are installed (`issue #19 <https://github.com/ivankravets/platformio/issues/19>`_)

View File

@ -1,11 +1,12 @@
# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
VERSION = (0, 8, "0-dev")
VERSION = (0, 7, 1)
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"
__description__ = ("A cross-platform code builder and library manager")
__description__ = ("A cross-platform code builder and library manager "
"(Arduino, MSP430, ARM)")
__url__ = "http://platformio.ikravets.com"
__author__ = "Ivan Kravets"