diff --git a/HISTORY.rst b/HISTORY.rst index 51981ccf..ec59872a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,11 @@ Release Notes PlatformIO 2.0 -------------- +2.10.3 (2016-06-15) +~~~~~~~~~~~~~~~~~~~ + +* Fixed issue with ``platformio init --ide`` command + 2.10.2 (2016-06-15) ~~~~~~~~~~~~~~~~~~~ diff --git a/platformio/__init__.py b/platformio/__init__.py index 2c38c6d8..0f8db754 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (2, 10, 2) +VERSION = (2, 10, 3) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"