From 43664672fc272409ee5569201f1866dbec719e75 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 14 Feb 2020 22:59:16 +0200 Subject: [PATCH] Bump version to 4.2.1a3 --- HISTORY.rst | 2 +- platformio/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index c7ef7e113d..342ec2bb4d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -9,7 +9,7 @@ PlatformIO Core 4 4.2.1 (2020-02-??) ~~~~~~~~~~~~~~~~~~ -* Improved VSCode template with special ``forceInclude`` field for direct inludes via ``-include`` flag (`issue #3379 `_) +* Improved VSCode template with special ``forceInclude`` field for direct includes via ``-include`` flag (`issue #3379 `_) * Improved support of PIO Home on card-sized PC (Raspberry Pi, etc.) (`issue #3313 `_) * Froze "marshmallow" dependency to 2.X for Python 2 (`issue #3380 `_) * Fixed "TypeError: unsupported operand type(s)" when system environment variable is used by project configuration parser (`issue #3377 `_) diff --git a/platformio/__init__.py b/platformio/__init__.py index 461bc7b6b2..adcc9d7c58 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 = (4, 2, "1a2") +VERSION = (4, 2, "1a3") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"