From 2cb7fcca9adfb7ecd7162559d91e4dcd2d644db8 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 10 Aug 2017 16:04:51 +0300 Subject: [PATCH] Bump version to 3.5.0a4 --- platformio/__init__.py | 2 +- platformio/managers/core.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/platformio/__init__.py b/platformio/__init__.py index f2b9947a..f6142d3c 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (3, 5, "0a3") +VERSION = (3, 5, "0a4") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/managers/core.py b/platformio/managers/core.py index 09ba478c..66109093 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.1.2,<2", "pysite-pioplus": ">=0.4.2,<2", - "tool-pioplus": ">=0.10.1,<2", + "tool-pioplus": ">=0.10.2,<2", "tool-unity": "~1.20302.1", "tool-scons": "~3.20501.2" }