Bump version to 5.2.0a1

This commit is contained in:
Ivan Kravets
2021-03-17 20:07:26 +02:00
parent 779e02a05e
commit 064fa6027d
2 changed files with 9 additions and 1 deletions

View File

@ -8,6 +8,14 @@ PlatformIO Core 5
**A professional collaborative platform for embedded development**
5.2.0 (2021-??-??)
~~~~~~~~~~~~~~~~~~
* **PlatformIO Debugging**
- Boosted `PlatformIO Debugging <https://docs.platformio.org/page/plus/debugging.html>`__ performance thanks to migrating the codebase to the pure Python 3 Asynchronous I/O stack
- Support debugging on Windows using Windows CMD (CLI) (`issue #3793 <https://github.com/platformio/platformio-core/issues/3793>`_)
5.1.1 (2021-03-17)
~~~~~~~~~~~~~~~~~~

View File

@ -14,7 +14,7 @@
import sys
VERSION = (5, 1, 1)
VERSION = (5, 2, "0a1")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"