diff --git a/HISTORY.rst b/HISTORY.rst index 8977ce5ec9..b09e2216b5 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,8 @@ Release History =============== -0.10.0 (?) ----------- +0.10.0 (2015-01-01) Happy New Year! +----------------------------------- * Implemented `platformio boards `_ command (`issue #11 `_) @@ -22,6 +22,7 @@ Release History * Fixed urllib3's *SSL* warning under Python <= 2.7.2 (`issue #39 `_) * Fixed bug with *Arduino USB* boards (`issue #40 `_) + 0.9.2 (2014-12-10) ------------------ diff --git a/platformio/__init__.py b/platformio/__init__.py index 6b960136f7..acddb2e5f5 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,7 +1,7 @@ # Copyright (C) Ivan Kravets # See LICENSE for details. -VERSION = (0, 10, "0-dev") +VERSION = (0, 10, 0) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"