diff --git a/HISTORY.rst b/HISTORY.rst index 9aaf947a..864ef433 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -9,6 +9,11 @@ PlatformIO Core 4.0 4.1.1 (2019-??-??) ~~~~~~~~~~~~~~~~~~ +* `PlatformIO Home 3.0 `__: + + - Project Manager + - Project Configuration UI for `"platformio.ini" `__ + * Handle project configuration (monitor, test, and upload options) for PIO Remote commands (`issue #2591 `_) * Warn about broken library manifest when scanning dependencies (`issue #3268 `_) * Fixed an issue with the broken latest news for PIO Home @@ -26,8 +31,9 @@ PlatformIO Core 4.0 - Unused variables or functions - Out of scope memory usage. -* `PlatformIO Home 3.0 `__ and Project Inspection +* `PlatformIO Home 3.0 `__: + - Project Inspection - Static Code Analysis - Firmware File Explorer - Firmware Memory Inspection diff --git a/platformio/managers/core.py b/platformio/managers/core.py index 59700f22..3bd2e56c 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.1", + "contrib-piohome": ">=3.1.0-beta.1,<3.2.0", "contrib-pysite": "~2.%d%d.0" % (sys.version_info[0], sys.version_info[1]), "tool-pioplus": "^2.6.0", "tool-unity": "~1.20403.0",