Ready for 0.5.0 release

This commit is contained in:
Ivan Kravets
2014-08-04 11:55:55 +03:00
parent 47b8d32bbf
commit 6239b9d22a
3 changed files with 5 additions and 7 deletions

View File

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

View File

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

View File

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