From 2e2773fa6bf24f67966ca2629c9e2908920b7640 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 20 Oct 2021 18:44:20 +0300 Subject: [PATCH] Bump version to 5.2.2 --- HISTORY.rst | 3 ++- docs | 2 +- platformio/__init__.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index f2d78cfe..1089d25d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -8,10 +8,11 @@ PlatformIO Core 5 **A professional collaborative platform for embedded development** -5.2.2 (2021-??-??) +5.2.2 (2021-10-20) ~~~~~~~~~~~~~~~~~~ - Override debugging firmware loading mode using ``--load-mode`` option for `pio debug `__ command +- Added support for CLion IDE 2021.3 (`pull #4085 `_) - Removed debugging "legacy Click" message from CLI (`issue #4083 `_) - Fixed a "TypeError: sequence item 1: expected str instance, list found" issue when extending configuration option in `"platformio.ini" `__ with the multi-line default value (`issue #4082 `_) diff --git a/docs b/docs index 0a751d47..66f67cb3 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 0a751d47b2f41a7888d43e5e390f6201279c34e5 +Subproject commit 66f67cb3357265ab52a0567b67337ca7fda6c3e4 diff --git a/platformio/__init__.py b/platformio/__init__.py index b56506a0..56d45672 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (5, 2, "2a1") +VERSION = (5, 2, 2) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"