Add support for LightBlue Bean board // Issue #292

This commit is contained in:
Ivan Kravets
2015-09-28 12:09:03 +01:00
parent 5201626d6a
commit d99a57365f
4 changed files with 44 additions and 3 deletions

View File

@ -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 <https://github.com/platformio/platformio/pull/292>`_)
* Fixed broken lock file for "appstate" storage
(`issue #288 <https://github.com/platformio/platformio/issues/288>`_)
2.3.2 (2015-09-10)
~~~~~~~~~~~~~~~~~~

View File

@ -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 <https://punchthrough.com/bean>`_
- ATMEGA328P
- 8 MHz
- 32 Kb
- 2 Kb
Quirkbot
~~~~~~~~

View File

@ -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 <https://punchthrough.com/bean>`_
- ATMEGA328P
- 8 MHz
- 32 Kb
- 2 Kb
Quirkbot
~~~~~~~~

View File

@ -1,7 +1,7 @@
# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
VERSION = (2, 3, "3.dev0")
VERSION = (2, 3, "3.dev1")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"