From be224d2d8ac9e44a11c9252a1223ef3f4f2c27d6 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 6 Jan 2015 18:32:06 +0200 Subject: [PATCH] Bump to 0.10.2 (resolve issue #42, #45) --- HISTORY.rst | 4 ++-- platformio/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 27a5f5e3..a275d21b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,8 @@ Release History =============== -0.10.2 (2015-01-?) ------------------- +0.10.2 (2015-01-06) +------------------- * Fixed an issue with ``--json-output`` (`issue #42 `_) * Fixed an exception during `platformio upgrade `__ under Windows OS (`issue #45 `_) diff --git a/platformio/__init__.py b/platformio/__init__.py index 4b35f3f7..f55145c6 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,7 +1,7 @@ # Copyright (C) Ivan Kravets # See LICENSE for details. -VERSION = (0, 11, "0-dev") +VERSION = (0, 10, 2) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"