From 2cd22f725e6648b386e0464e27a16d0af07adc95 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 15 Jun 2016 18:46:41 +0300 Subject: [PATCH] Version bump to 2.10.3 --- HISTORY.rst | 5 +++++ platformio/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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"