diff --git a/HISTORY.rst b/HISTORY.rst index 3b5930ad..9426f0dd 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -12,7 +12,7 @@ PlatformIO Core 6 **A professional collaborative platform for declarative, safety-critical, and test-driven embedded development.** -6.0.1 (2022-05-??) +6.0.1 (2022-05-17) ~~~~~~~~~~~~~~~~~~ * Improved support for the renamed configuration options (`issue #4270 `_) diff --git a/docs b/docs index 2ea85922..5bf0037c 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 2ea8592203cc647febcb1e13abca311a6ea99903 +Subproject commit 5bf0037c6679cccffbb835c30d729cd19120651b diff --git a/platformio/__init__.py b/platformio/__init__.py index 1e3b1597..097088c0 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (6, 0, "1b1") +VERSION = (6, 0, 1) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/telemetry.py b/platformio/telemetry.py index 2792d5c6..ba721792 100644 --- a/platformio/telemetry.py +++ b/platformio/telemetry.py @@ -346,6 +346,7 @@ def dump_run_environment(options): "check_tool", "debug_tool", "monitor_filters", + "test_framework", ] safe_options = {k: v for k, v in options.items() if k in non_sensitive_data} if is_platformio_project(os.getcwd()):