From 8d03f2dc805127cf0f009007de963706b849ecb1 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 14 Jun 2016 19:41:34 +0300 Subject: [PATCH] Update history --- HISTORY.rst | 8 ++++++++ platformio/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 998b0e61..00374ec1 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,14 @@ Release Notes PlatformIO 2.0 -------------- +2.10.2 (2016-06-??) +~~~~~~~~~~~~~~~~~~~ + +* Fixed issue with ARM mbed framework with ``-u _printf_float`` and + ``-u _scanf_float`` when parsing ``$LINKFLAGS`` +* Fixed issue with ARM mbed framework and extra includes for the custom boards, + such as Seeeduino Arch Pro + 2.10.1 (2016-06-13) ~~~~~~~~~~~~~~~~~~~ diff --git a/platformio/__init__.py b/platformio/__init__.py index ff8cfe32..4f9d2e11 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (2, 10, 1) +VERSION = (2, 10, "2.dev0") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"