From f3f0979f92d0e34e9f51b90c9c5920e6528b556f Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 27 Feb 2015 22:40:15 +0200 Subject: [PATCH 1/3] Change development status from `beta` to `Production/Stable` --- HISTORY.rst | 8 ++++++-- platformio/__init__.py | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 599e135e..80c773e5 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,9 +1,12 @@ Release History =============== -1.0.0 (2015-?) --------------- +1.0.0 (2015-02-27) +------------------ +**PlatformIO 1.0 - recommended for production** + +* Changed development status from ``beta`` to ``Production/Stable`` * Added support for *ARM*-based credit-card computers: `Raspberry Pi `_, `BeagleBone `_ and `CubieBoard `_ @@ -64,6 +67,7 @@ Release History when a version of `requests` package is less then 2.4.0 * Fixed bug with invalid process's "return code" when PlatformIO has internal error (`issue #81 `_) +* Several bug fixes, increased stability and performance improvements 0.10.2 (2015-01-06) diff --git a/platformio/__init__.py b/platformio/__init__.py index 71065f38..7e3220d6 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,7 +1,7 @@ # Copyright (C) Ivan Kravets # See LICENSE for details. -VERSION = (1, 0, "0-dev") +VERSION = (1, 0, 0) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" From ce4ce67607977e8914010a6316825422f7c17480 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 27 Feb 2015 22:56:22 +0200 Subject: [PATCH 2/3] Add keywords and extend platforms list --- README.rst | 6 ++++++ setup.py | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index cfe5e027..b18aa0e3 100644 --- a/README.rst +++ b/README.rst @@ -114,6 +114,12 @@ It has support for many popular embedded platforms like these: * ``atmelavr`` `Atmel AVR `_ (including *Arduino*-based boards, *Microduino, Raspduino, Teensy*) +* ``atmelsam`` `Atmel SAM `_ + (including *Arduino*-based boards, *Digistump DigiX*) +* ``stm32`` `STM32 `_ + (including *STM32 Discovery* Kits, CMSIS, SPL, libOpenCM3) +* ``teensy`` `STM32 `_ + (including *Teensy 2 and 3* USB boards) * ``timsp430`` `TI MSP430 `_ (including *MSP430* LaunchPads) * ``titiva`` `TI TIVA C `_ diff --git a/setup.py b/setup.py index 1c0972e3..6d5fb2ce 100644 --- a/setup.py +++ b/setup.py @@ -41,5 +41,7 @@ setup( "Topic :: Software Development", "Topic :: Software Development :: Build Tools", "Topic :: Software Development :: Compilers" - ] + ], + keywords=("builder library manager atmel avr sam teensy stm32 " + "ti msp430 tiva mbed arduino opencm3") ) From 637a43d6f4fae55c352377954f77c7225676188e Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 27 Feb 2015 23:02:44 +0200 Subject: [PATCH 3/3] Correction to supported platforms --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index b18aa0e3..31522103 100644 --- a/README.rst +++ b/README.rst @@ -110,7 +110,7 @@ where you can setup different environments with specific options (platform type, firmware uploading settings, pre-built framework, build flags and many more). -It has support for many popular embedded platforms like these: +It has support for the most popular embedded platforms: * ``atmelavr`` `Atmel AVR `_ (including *Arduino*-based boards, *Microduino, Raspduino, Teensy*) @@ -118,7 +118,7 @@ It has support for many popular embedded platforms like these: (including *Arduino*-based boards, *Digistump DigiX*) * ``stm32`` `STM32 `_ (including *STM32 Discovery* Kits, CMSIS, SPL, libOpenCM3) -* ``teensy`` `STM32 `_ +* ``teensy`` `Teensy `_ (including *Teensy 2 and 3* USB boards) * ``timsp430`` `TI MSP430 `_ (including *MSP430* LaunchPads)