diff --git a/HISTORY.rst b/HISTORY.rst index 68427595..9898f2a6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -8,6 +8,7 @@ Release Notes .. |UNITTESTING| replace:: `Unit Testing `__ .. |DEBUGGING| replace:: `Debugging `__ .. |STATICCODEANALYSIS| replace:: `Static Code Analysis `__ +.. |PIOHOME| replace:: `PIO Home `__ .. _release_notes_6: @@ -21,6 +22,8 @@ test-driven methodologies, and modern toolchains for unrivaled success. 6.1.18 (2025-??-??) ~~~~~~~~~~~~~~~~~~~ +* Resolved a regression issue that prevented |PIOHOME| from opening external links (`issue #5084 `_) + 6.1.17 (2025-02-13) ~~~~~~~~~~~~~~~~~~~ @@ -90,7 +93,7 @@ test-driven methodologies, and modern toolchains for unrivaled success. ~~~~~~~~~~~~~~~~~~~ * Resolved a possible issue that may cause generated projects for `PlatformIO IDE for VSCode `__ to fail to launch a debug session because of a missing "objdump" binary when GDB is not part of the toolchain package -* Resolved a regression issue that resulted in the malfunction of the Memory Inspection feature within `PIO Home `__ +* Resolved a regression issue that resulted in the malfunction of the Memory Inspection feature within |PIOHOME| 6.1.10 (2023-08-11) ~~~~~~~~~~~~~~~~~~~ diff --git a/platformio/dependencies.py b/platformio/dependencies.py index b028b46d..2de0798f 100644 --- a/platformio/dependencies.py +++ b/platformio/dependencies.py @@ -29,7 +29,7 @@ def get_core_dependencies(): def get_pip_dependencies(): core = [ "bottle == 0.13.*", - "click >=8.0.4, <9", + "click >=8.0.4, <8.1.8", "colorama", "marshmallow == 3.*", "pyelftools >=0.27, <1",