From 4b7916c2af281ed1f487fb0deda96f16ef79597e Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 21 Jun 2019 17:50:18 +0300 Subject: [PATCH] Bump version to 4.0.0b1 --- HISTORY.rst | 2 +- platformio/__init__.py | 2 +- platformio/managers/core.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 9e931722..b60e44ff 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -11,7 +11,7 @@ PlatformIO 4.0 `Migration Guide from 3.0 to 4.0 `__. -* `PlatformIO Plus Goes Open Source... `__ +* `PlatformIO Plus Goes Open Source `__ - Open source `PIO Unified Debugger `__ - Open source `PIO Unit Testing `__ diff --git a/platformio/__init__.py b/platformio/__init__.py index 40c6874e..9d89adae 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, 0, "0a23") +VERSION = (4, 0, "0b1") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/managers/core.py b/platformio/managers/core.py index 6efc19f9..2a144399 100644 --- a/platformio/managers/core.py +++ b/platformio/managers/core.py @@ -30,7 +30,7 @@ CORE_PACKAGES = { "contrib-piohome": "^2.1.0", "contrib-pysite": "~2.%d%d.190418" % (sys.version_info[0], sys.version_info[1]), - "tool-pioplus": "^2.4.0", + "tool-pioplus": "^2.5.2", "tool-unity": "~1.20403.0", "tool-scons": "~2.20501.7" if PY2 else "~3.30005.0" }