Merge tag 'v6.0.1' into develop

Bump version to 6.0.1
This commit is contained in:
Ivan Kravets
2022-05-17 19:23:31 +03:00
5 changed files with 6 additions and 5 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()):

View File

@ -28,9 +28,9 @@ from platformio import (
minimal_requirements = [ minimal_requirements = [
"bottle==0.12.*", "bottle==0.12.*",
"click%s" % (">=8.0.3,<9" if sys.version_info >= (3, 7) else "==8.0.4"), "click%s" % (">=8.0.4,<9" if sys.version_info >= (3, 7) else "==8.0.4"),
"colorama", "colorama",
"marshmallow==3.*", "marshmallow==%s" % ("3.*" if sys.version_info >= (3, 7) else "3.14.1"),
"pyelftools>=0.27,<1", "pyelftools>=0.27,<1",
"pyserial==3.*", "pyserial==3.*",
"requests==2.*", "requests==2.*",