From 3b5c73b1a3064d46b4ab6d17272cbcf2e6850ac4 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 1 Sep 2017 00:39:17 +0300 Subject: [PATCH] Bump version to 3.5.0a6 --- docs | 2 +- platformio/__init__.py | 2 +- platformio/managers/core.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs b/docs index d0d8dc7d..6e561ca7 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit d0d8dc7dc337e6a9ef4d415ebb118e4b04f9f339 +Subproject commit 6e561ca7ba7e0fc90c5403147cd601cba5e3a1cd diff --git a/platformio/__init__.py b/platformio/__init__.py index d8e937f4..c6eea690 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (3, 5, "0a5") +VERSION = (3, 5, "0a6") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/managers/core.py b/platformio/managers/core.py index 1161e437..abf8891e 100644 --- a/platformio/managers/core.py +++ b/platformio/managers/core.py @@ -21,9 +21,9 @@ from platformio import __version__, exception, util from platformio.managers.package import PackageManager CORE_PACKAGES = { - "contrib-piohome": ">=0.2.0,<2", + "contrib-piohome": ">=0.2.1,<2", "pysite-pioplus": ">=0.4.2,<2", - "tool-pioplus": ">=0.10.5,<2", + "tool-pioplus": ">=0.10.6,<2", "tool-unity": "~1.20302.1", "tool-scons": "~3.20501.2" }