From 26fdd0a62c2bcdec5e123b13819ae39f57f16169 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 13 Aug 2020 18:30:33 +0300 Subject: [PATCH] Bump version to 4.4.0a8 --- platformio/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/platformio/__init__.py b/platformio/__init__.py index 0a1bc48c..ee6d438d 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -12,7 +12,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -VERSION = (4, 4, "0a7") +import sys + +VERSION = (4, 4, "0a8") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"