Bump version to 3.5.1 (issue #1273 issue #1280 issue #1286 issue #1247 issue #1284 issue #1299 issue #1290)

This commit is contained in:
Ivan Kravets
2018-01-18 15:11:38 +02:00
parent 93d4e68378
commit 9b9b05439b
2 changed files with 8 additions and 6 deletions

View File

@ -4,7 +4,7 @@ Release Notes
PlatformIO 3.0
--------------
3.5.1 (2018-??-??)
3.5.1 (2018-01-18)
~~~~~~~~~~~~~~~~~~
* New ``test_speed`` option to control a communication baudrate/speed between

View File

@ -14,14 +14,16 @@
import sys
VERSION = (3, 5, "1a7")
VERSION = (3, 5, 1)
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"
__description__ = ("An open source ecosystem for IoT development. "
"Cross-platform build system and library manager. "
"Continuous and IDE integration. "
"Arduino, ESP8266 and ARM mbed compatible")
__description__ = (
"An open source ecosystem for IoT development. "
"Cross-platform IDE and unified debugger. "
"Remote unit testing and firmware updates. "
"Arduino, ARM mbed, Espressif (ESP8266/ESP32), STM32, PIC32, nRF51/nRF52, "
"FPGA, CMSIS, SPL, AVR, Samsung ARTIK, libOpenCM3")
__url__ = "http://platformio.org"
__author__ = "Ivan Kravets"