From 7c2c0ba1aa6a97fc31f3b8236539e9e5328fc100 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 20 Jul 2018 02:09:40 +0300 Subject: [PATCH] Bump version to 3.6.0a9 --- 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 f3132dbe..6ddc35e0 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (3, 6, "0a8") +VERSION = (3, 6, "0a9") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/managers/core.py b/platformio/managers/core.py index a4ff9be0..1218f5e8 100644 --- a/platformio/managers/core.py +++ b/platformio/managers/core.py @@ -21,7 +21,7 @@ from platformio import __version__, exception, util from platformio.managers.package import PackageManager CORE_PACKAGES = { - "contrib-piohome": "^1.0.0", + "contrib-piohome": "^1.0.1", "contrib-pysite": ">=0.3.2,<2", "tool-pioplus": "^1.4.0", "tool-unity": "~1.20403.0",