From e22ab787dd7aad3e8d368e85bfbd0169477f9561 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 2 Oct 2015 15:34:36 +0100 Subject: [PATCH] Fix ESP8266 compile errors about RAM size when adding 1 library // Resolve #297 --- HISTORY.rst | 2 ++ platformio/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 36b0addf..ff35a841 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -13,6 +13,8 @@ PlatformIO 2.0 (`pull #293 `_) * Fixed broken lock file for "appstate" storage (`issue #288 `_) +* Fixed ESP8266 compile errors about RAM size when adding 1 library + (`issue #296 `_) 2.3.2 (2015-09-10) ~~~~~~~~~~~~~~~~~~ diff --git a/platformio/__init__.py b/platformio/__init__.py index 3547d272..abc7c932 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,7 +1,7 @@ # Copyright (C) Ivan Kravets # See LICENSE for details. -VERSION = (2, 3, "3.dev2") +VERSION = (2, 3, "3.dev3") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"