Bump version to 6.0.1

This commit is contained in:
Ivan Kravets
2022-05-17 19:23:00 +03:00
parent 38afa07dbe
commit cb7148d018
4 changed files with 4 additions and 3 deletions

View File

@ -12,7 +12,7 @@ PlatformIO Core 6
**A professional collaborative platform for declarative, safety-critical, and test-driven embedded development.** **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 <https://github.com/platformio/platformio-core/issues/4270>`_) * Improved support for the renamed configuration options (`issue #4270 <https://github.com/platformio/platformio-core/issues/4270>`_)

2
docs

Submodule docs updated: 2ea8592203...5bf0037c66

View File

@ -14,7 +14,7 @@
import sys import sys
VERSION = (6, 0, "1b1") VERSION = (6, 0, 1)
__version__ = ".".join([str(s) for s in VERSION]) __version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio" __title__ = "platformio"

View File

@ -346,6 +346,7 @@ def dump_run_environment(options):
"check_tool", "check_tool",
"debug_tool", "debug_tool",
"monitor_filters", "monitor_filters",
"test_framework",
] ]
safe_options = {k: v for k, v in options.items() if k in non_sensitive_data} safe_options = {k: v for k, v in options.items() if k in non_sensitive_data}
if is_platformio_project(os.getcwd()): if is_platformio_project(os.getcwd()):