From c14dbb5ef1e565fb3f375a3b101f0869c0444446 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 24 Sep 2014 22:25:44 +0300 Subject: [PATCH] Resolve #6. Ready for 0.7.0 --- HISTORY.rst | 4 ++-- platformio/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 9f53d186..423b0c19 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,8 @@ Release History =============== -0.7.0 (?) ---------- +0.7.0 (2014-09-24) +------------------ * Implemented new ``[platformio]`` section for Configuration File with ``home_dir`` option (`issue #14 `_) diff --git a/platformio/__init__.py b/platformio/__init__.py index 67cd843e..dcc97ca2 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,7 +1,7 @@ # Copyright (C) Ivan Kravets # See LICENSE for details. -VERSION = (0, 7, "0-dev") +VERSION = (0, 7, 0) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"