From b169f2e25234f8949bc968843eafb9592863ca3b Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 22 Mar 2016 23:02:42 +0200 Subject: [PATCH] Version bump to 2.8.6 (issues #568, #571, #572, #586, #591) --- HISTORY.rst | 6 +++--- platformio/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index d10ccb87c1..615f72c12a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,7 +4,7 @@ Release Notes PlatformIO 2.0 -------------- -2.8.6 (2016-??-??) +2.8.6 (2016-03-22) ~~~~~~~~~~~~~~~~~~ * Launched `PlatformIO Community Forums `_ @@ -21,8 +21,8 @@ PlatformIO 2.0 * Better handling of used boards when re-initialize/update project * Improved support for non-Unicode user profiles for Windows OS * Disabled progress bar for download operations when prompts are disabled -* Fixed multiple definition errors for ST STM32 development platform and mbed - framework +* Fixed multiple definition errors for ST STM32 development platform and + ARM mbed framework (`issue #571 `_) * Fixed invalid board parameters (reset method and baudrate) for a few ESP8266 based boards diff --git a/platformio/__init__.py b/platformio/__init__.py index 619b68437b..3fb5bef8c5 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (2, 8, "6.dev0") +VERSION = (2, 8, 6) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"