diff --git a/HISTORY.rst b/HISTORY.rst index 2607fb41..f05a4637 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -13,7 +13,7 @@ PlatformIO Core 5 - Show human-readable message when infinite recursion is detected while processing `Interpolation of Values `__ (`issue #3883 `_) - Improved directory interpolation (``${platformio.***_dir}``) in `"platformio.ini" `__ configuration file (`issue #3934 `_) -- Ignore resolving of SCons variables (e.g., ``${SOURCE.get_abspath()}``) when preprocessing interpolations (`issue #3933 `_) +- Ignore resolving of SCons variables (e.g., ``${(SOURCE.get_abspath())}``) when preprocessing interpolations (`issue #3933 `_) - Fixed an issue when the "$PROJECT_DIR" variable was not properly replaced in the `debug_server `__ option (`issue #4086 `_) - Fixed an issue when `PIO Remote `__ device monitor crashes on the first keypress (`issue #3832 `_) diff --git a/platformio/__init__.py b/platformio/__init__.py index 2e740a7f..b2e0a694 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (5, 2, "3a3") +VERSION = (5, 2, "3b1") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"