From d043412e0f2f00e393ac46d961dc611d68415cd1 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 7 Nov 2019 16:54:12 +0200 Subject: [PATCH] Bump version to 4.1.0 --- HISTORY.rst | 2 +- docs | 2 +- platformio/__init__.py | 2 +- platformio/managers/core.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 7cba3999..13a15253 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,7 +6,7 @@ Release Notes PlatformIO Core 4.0 ------------------- -4.1.0 (2019-??-??) +4.1.0 (2019-11-07) ~~~~~~~~~~~~~~~~~~ * `PIO Check `__ – automated code analysis without hassle: diff --git a/docs b/docs index 5ee19204..28f91efb 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 5ee192047c6d58aa7087f24ad9b5f4d1ffce68e1 +Subproject commit 28f91efb24b70301c7357956b2aa88dae0ad6cdd diff --git a/platformio/__init__.py b/platformio/__init__.py index 74f1af2b..893d83db 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -VERSION = (4, 1, "0rc9") +VERSION = (4, 1, 0) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/managers/core.py b/platformio/managers/core.py index a3a33868..8e66aa19 100644 --- a/platformio/managers/core.py +++ b/platformio/managers/core.py @@ -24,7 +24,7 @@ from platformio.proc import copy_pythonpath_to_osenv, get_pythonexe_path from platformio.project.config import ProjectConfig CORE_PACKAGES = { - "contrib-piohome": ">=3.0.0-beta.5,<3.1.0", + "contrib-piohome": "~3.0.0", "contrib-pysite": "~2.%d%d.0" % (sys.version_info[0], sys.version_info[1]), "tool-pioplus": "^2.5.8", "tool-unity": "~1.20403.0",