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"