Bump to 0.10.0 (resolve issues: #11, #21, #35, #37, #38, #39, #40, #43 )

This commit is contained in:
Ivan Kravets
2015-01-01 20:57:47 +02:00
parent 1fb0644f51
commit 68733a447a
2 changed files with 4 additions and 3 deletions

View File

@ -1,8 +1,8 @@
Release History
===============
0.10.0 (?)
----------
0.10.0 (2015-01-01) Happy New Year!
-----------------------------------
* Implemented `platformio boards <http://docs.platformio.org/en/latest/userguide/cmd_boards.html>`_
command (`issue #11 <https://github.com/ivankravets/platformio/issues/11>`_)
@ -22,6 +22,7 @@ Release History
* Fixed urllib3's *SSL* warning under Python <= 2.7.2 (`issue #39 <https://github.com/ivankravets/platformio/issues/39>`_)
* Fixed bug with *Arduino USB* boards (`issue #40 <https://github.com/ivankravets/platformio/issues/40>`_)
0.9.2 (2014-12-10)
------------------

View File

@ -1,7 +1,7 @@
# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
VERSION = (0, 10, "0-dev")
VERSION = (0, 10, 0)
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"