diff --git a/HISTORY.rst b/HISTORY.rst index 7a6a93cd..f26bad63 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -17,7 +17,7 @@ Unlock the true potential of embedded software development with PlatformIO's collaborative ecosystem, embracing declarative principles, test-driven methodologies, and modern toolchains for unrivaled success. -6.1.13 (2024-??-??) +6.1.13 (2024-01-12) ~~~~~~~~~~~~~~~~~~~ * Expanded support for SCons variables declared in the legacy format ``${SCONS_VARNAME}`` (`issue #4828 `_) diff --git a/docs b/docs index c3657d69..3f021525 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit c3657d698d29cb8ba02bc709958ec22e7f5def04 +Subproject commit 3f02152561334a92bd8cae5c49e35cc194f86721 diff --git a/platformio/__init__.py b/platformio/__init__.py index 3d4f4017..7024104f 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -VERSION = (6, 1, "13a2") +VERSION = (6, 1, 13) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/pipdeps.py b/platformio/pipdeps.py index e9674dda..677d8c9d 100644 --- a/platformio/pipdeps.py +++ b/platformio/pipdeps.py @@ -35,7 +35,7 @@ def get_pip_dependencies(): home = [ # PIO Home requirements "ajsonrpc == 1.2.*", - "starlette >=0.19, <0.35", + "starlette >=0.19, <0.36", "uvicorn %s" % ("== 0.16.0" if PY36 else ">=0.16, <0.26"), "wsproto == 1.*", ]