From 416bf8e7aff7ddce88153bb6a0ccee31ce019ce7 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sun, 19 Oct 2014 17:58:35 +0300 Subject: [PATCH] Ready for v0.8.0 --- HISTORY.rst | 4 ++-- platformio/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index b7e4d91c..0643a43a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,8 @@ Release History =============== -0.8.0 (?) ---------- +0.8.0 (2014-10-19) +------------------ * Avoided trademark issues in ``library.json`` with new fields: ``frameworks``, ``platforms`` and ``dependencies`` (`issue #17 `_) diff --git a/platformio/__init__.py b/platformio/__init__.py index d53c2bb6..1ffc750d 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,7 +1,7 @@ # Copyright (C) Ivan Kravets # See LICENSE for details. -VERSION = (0, 8, "0-dev") +VERSION = (0, 8, 0) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"