diff --git a/HISTORY.rst b/HISTORY.rst index d18ee318..066b55e2 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,13 +4,14 @@ Release History PlatformIO 2.0 -------------- -2.3.3 (2015-09-??) +2.3.3 (2015-??-??) ~~~~~~~~~~~~~~~~~~ +* Added support for LightBlue Bean board + (`pull #292 `_) * Fixed broken lock file for "appstate" storage (`issue #288 `_) - 2.3.2 (2015-09-10) ~~~~~~~~~~~~~~~~~~ diff --git a/docs/frameworks/arduino.rst b/docs/frameworks/arduino.rst index ba909a08..2902cd6d 100644 --- a/docs/frameworks/arduino.rst +++ b/docs/frameworks/arduino.rst @@ -630,6 +630,26 @@ PanStamp - 32 Kb - 4 Kb +Punch Through +~~~~~~~~~~~~~ + +.. list-table:: + :header-rows: 1 + + * - Type ``board`` + - Name + - Microcontroller + - Frequency + - Flash + - RAM + + * - ``lightblue-bean`` + - `LightBlue Bean `_ + - ATMEGA328P + - 8 MHz + - 32 Kb + - 2 Kb + Quirkbot ~~~~~~~~ diff --git a/docs/platforms/atmelavr.rst b/docs/platforms/atmelavr.rst index 7a536133..cfd264d0 100644 --- a/docs/platforms/atmelavr.rst +++ b/docs/platforms/atmelavr.rst @@ -601,6 +601,26 @@ PanStamp - 32 Kb - 2 Kb +Punch Through +~~~~~~~~~~~~~ + +.. list-table:: + :header-rows: 1 + + * - Type ``board`` + - Name + - Microcontroller + - Frequency + - Flash + - RAM + + * - ``lightblue-bean`` + - `LightBlue Bean `_ + - ATMEGA328P + - 8 MHz + - 32 Kb + - 2 Kb + Quirkbot ~~~~~~~~ diff --git a/platformio/__init__.py b/platformio/__init__.py index 5772010f..3ed50770 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.dev0") +VERSION = (2, 3, "3.dev1") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"