From 9b9b05439bf8afbbe278e98453dd96f5f085b383 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 18 Jan 2018 15:11:38 +0200 Subject: [PATCH] Bump version to 3.5.1 (issue #1273 issue #1280 issue #1286 issue #1247 issue #1284 issue #1299 issue #1290) --- HISTORY.rst | 2 +- platformio/__init__.py | 12 +++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 92bc0277..c9416975 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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 diff --git a/platformio/__init__.py b/platformio/__init__.py index 7ca151fd..db38e271 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -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"