From 02480730bba5e768efc7c1c240c3b3de12ad3684 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 30 Dec 2015 20:24:51 +0200 Subject: [PATCH] Version bump to 2.7.0 (issues #319, #382, #386, #391, #394, #397, #400, #403, #404, #406, #407, #417) --- HISTORY.rst | 4 +++- platformio/__init__.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index d35e4fa0..517fbeee 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,9 +4,11 @@ Release History PlatformIO 2.0 -------------- -2.7.0 (2015-12-??) +2.7.0 (2015-12-30) ~~~~~~~~~~~~~~~~~~ +**Happy New Year!** + * Moved SCons to PlatformIO packages. PlatformIO does not require SCons to be installed in your system. Significantly simplified installation process of PlatformIO. ``pip install platformio`` rocks! diff --git a/platformio/__init__.py b/platformio/__init__.py index 205489d2..975ca541 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (2, 7, "0.dev15") +VERSION = (2, 7, 0) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"