From bc323252e8ac9d6ce91cb99961aa7cb3bb6fb2f9 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 13 Mar 2018 12:00:01 +0200 Subject: [PATCH] Bump version to 3.5.2 (issue #1301 issue #1313 issue #1323 issue #1303 issue #1029 issue #1310 issue #1390 issue #1312 issue #1433) --- HISTORY.rst | 2 +- platformio/__init__.py | 2 +- platformio/managers/core.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index f780dc9a..b672ab6c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,7 +4,7 @@ Release Notes PlatformIO 3.0 -------------- -3.5.2 (2018-??-??) +3.5.2 (2018-03-13) ~~~~~~~~~~~~~~~~~~ * `PlatformIO Home `__ - diff --git a/platformio/__init__.py b/platformio/__init__.py index 9bf36bd5..1a98a778 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (3, 5, "2rc4") +VERSION = (3, 5, 2) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/managers/core.py b/platformio/managers/core.py index 99b59de1..9f3cc628 100644 --- a/platformio/managers/core.py +++ b/platformio/managers/core.py @@ -23,7 +23,7 @@ from platformio.managers.package import PackageManager CORE_PACKAGES = { "contrib-piohome": ">=0.7.1,<2", "contrib-pysite": ">=0.1.5,<2", - "tool-pioplus": ">=0.14.3,<2", + "tool-pioplus": ">=0.14.5,<2", "tool-unity": "~1.20302.1", "tool-scons": "~2.20501.4" }