diff --git a/HISTORY.rst b/HISTORY.rst index 2c24371a..5687765d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -8,18 +8,23 @@ PlatformIO Core 5 **A professional collaborative platform for embedded development** -5.1.0 (2021-??-??) +5.1.0 (2021-01-28) ~~~~~~~~~~~~~~~~~~ +* **PlatformIO Home** + + - Boosted PlatformIO Home performance thanks to migrating the codebase to the pure Python 3 Asynchronous I/O stack + - Added a new ``--session-id`` option to `pio home `__ command that helps to keep PlatformIO Home isolated from other instances and protect from 3rd party access (`issue #3397 `_) + * **Build System** - Upgraded build engine to the SCons 4.1 (`release notes `_) - Refactored a workaround for a maximum command line character limitation (`issue #3792 `_) - Fixed an issue with Python 3.8+ on Windows when a network drive is used (`issue #3417 `_) -* **Package Management System** +* **Package Management** - - New options for `system prune `__ command: + - New options for `pio system prune `__ command: + ``--dry-run`` option to show data that will be removed + ``--core-packages`` option to remove unnecessary core packages @@ -30,11 +35,6 @@ PlatformIO Core 5 - Fixed an issue when unnecessary packages were removed in ``update --dry-run`` mode (`issue #3809 `_) - Fixed a "ValueError: Invalid simple block" when uninstalling a package with a custom name and external source (`issue #3816 `_) -* **PlatformIO Home** - - - Significantly speedup PlatformIO Home loading time by migrating to native Python 3 Asynchronous I/O - - Added a new ``--session-id`` option to `pio home `__ command that helps to keep PlatformIO Home isolated from other instances and protect from 3rd party access (`issue #3397 `_) - * **Debugging** - Configure a custom debug adapter speed using a new `debug_speed `__ option (`issue #3799 `_) diff --git a/docs b/docs index d50d1e2c..25edd66d 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit d50d1e2c75a44aac26dda85f58787a5210125927 +Subproject commit 25edd66d5514cc5a0c8d5a01f4752de3e98a03d0 diff --git a/examples b/examples index ced25363..8a6e639b 160000 --- a/examples +++ b/examples @@ -1 +1 @@ -Subproject commit ced253632eac141595967b08ad6eb258c0bc0878 +Subproject commit 8a6e639b2bcb18dec63bc010f359b49f85084b45 diff --git a/platformio/__init__.py b/platformio/__init__.py index bca2f0d5..5ed64a4e 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (5, 1, "0rc3") +VERSION = (5, 1, 0) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"