Merge branch 'release/v0.5.0' into develop

This commit is contained in:
Ivan Kravets
2014-08-04 11:56:43 +03:00
3 changed files with 5 additions and 7 deletions

View File

@ -4,8 +4,8 @@ Release History
1.0.0 (?) 1.0.0 (?)
--------- ---------
0.5.0 (?) 0.5.0 (2014-08-04)
--------- ------------------
* Improved nested lookups for libraries * Improved nested lookups for libraries
* Disabled default warning flag "-Wall" * Disabled default warning flag "-Wall"

View File

@ -26,8 +26,7 @@ PlatformIO
`Blog <http://www.ikravets.com/category/computer-life/platformio>`_ `Blog <http://www.ikravets.com/category/computer-life/platformio>`_
**PlatformIO** is a console tool to build code with different development **PlatformIO** is a cross-platform code builder and library manager.
platforms.
You have no need to install any *IDE* or compile any toolchains. *PlatformIO* You have no need to install any *IDE* or compile any toolchains. *PlatformIO*
has pre-built different development platforms including: compiler, debugger, has pre-built different development platforms including: compiler, debugger,

View File

@ -1,12 +1,11 @@
# Copyright (C) Ivan Kravets <me@ikravets.com> # Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details. # See LICENSE for details.
VERSION = (1, 0, "0-dev") VERSION = (0, 5, 0)
__version__ = ".".join([str(s) for s in VERSION]) __version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio" __title__ = "platformio"
__description__ = ("A console tool to build code with different " __description__ = ("A cross-platform code builder and library manager")
"development platforms")
__url__ = "https://github.com/ivankravets/platformio" __url__ = "https://github.com/ivankravets/platformio"
__author__ = "Ivan Kravets" __author__ = "Ivan Kravets"