From a2451a716db5ba633260c63f5437be4d0c472ba2 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 25 Oct 2019 20:01:31 +0300 Subject: [PATCH] PIO Home 3.0 with Project Inspect --- HISTORY.rst | 7 +++++++ docs | 2 +- platformio/managers/core.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 0d3e7e8b..14258008 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -18,6 +18,13 @@ PlatformIO Core 4.0 - Unused variables or functions - Out of scope memory usage. +* `PlatformIO Home 3.0 `__ + + - Static Code Analysis + - Firmware File Explorer + - Firmware Memory Inspection + - Firmware Sections & Symbols Viewer. + * Added support for `Build Middlewares `__: configure custom build flags per specific file, skip any build nodes from a framework, replace build file with another on-the-fly, etc. * Extend project environment configuration in "platformio.ini" with other sections using a new `extends `__ option (`issue #2953 `_) * Generate ``.ccls`` LSP file for `Emacs `__ cross references, hierarchies, completion and semantic highlighting diff --git a/docs b/docs index 733ab67e..3f5ecce6 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 733ab67e51bf7b567e73ca9b1545410b0397f167 +Subproject commit 3f5ecce6556575ebc8942369891050d7a0ac4e08 diff --git a/platformio/managers/core.py b/platformio/managers/core.py index 856edecb..f9ad5c0b 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": "^2.3.2", + "contrib-piohome": ">=3.0.0-beta.1,<4", "contrib-pysite": "~2.%d%d.0" % (sys.version_info[0], sys.version_info[1]), "tool-pioplus": "^2.5.8", "tool-unity": "~1.20403.0",