From fbab527ed37fea3ed51c70ddb6791b4668b2520b Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 9 Aug 2014 23:20:45 +0300 Subject: [PATCH] Ready for 0.6.0 release --- HISTORY.rst | 4 ++-- platformio/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 126a4f2d..a5e000bb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,8 @@ Release History =============== -0.6.0 (?) ---------- +0.6.0 (2014-08-09) +------------------ * Implemented ``serialports monitor`` (`issue #10 `_) * Fixed an issue ``ImportError: No module named platformio.util`` (`issue #9 `_) diff --git a/platformio/__init__.py b/platformio/__init__.py index 47f78673..b2f1c430 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,7 +1,7 @@ # Copyright (C) Ivan Kravets # See LICENSE for details. -VERSION = (0, 6, "0-dev") +VERSION = (0, 6, 0) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"