From ea71a24e6d2f8db98942d983b04713a751838031 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 21 Jun 2014 22:44:57 +0300 Subject: [PATCH] Preparation for the first stable/production release --- HISTORY.rst | 6 +++++- platformio/__init__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index f721c4c4..14f6ca96 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,9 +1,13 @@ Release History =============== -0.3.0 (2014-06-21) +1.0.0 (?) --------- + +0.3.0 (2014-06-21) +------------------ + * Allowed to pass multiple "SomePlatform" to install/uninstall commands * Added "IDE Integration" section to README with Eclipse project examples * Created auto installer script for *PlatformIO* (`issue #3 `_) diff --git a/platformio/__init__.py b/platformio/__init__.py index 6ad01aad..01219250 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,7 +1,7 @@ # Copyright (C) Ivan Kravets # See LICENSE for details. -VERSION = (0, 3, 0) +VERSION = (1, 0, "0-dev") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"