From 331cd0aa0df7c42b20bb8e1fa1668096873f428d Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 29 Oct 2018 14:10:42 +0200 Subject: [PATCH] Bump version to 3.6.1 --- HISTORY.rst | 2 +- docs | 2 +- platformio/__init__.py | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 47fe2712..5ea68cce 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,7 +4,7 @@ Release Notes PlatformIO 3.0 -------------- -3.6.1 (2018-??-??) +3.6.1 (2018-10-29) ~~~~~~~~~~~~~~~~~~ * Generate an `include `__ and `test `__ directories with a README file when initializing a new project diff --git a/docs b/docs index fe57023f..30c88f62 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit fe57023f083c73be08efbc42986bdcb2eeac4664 +Subproject commit 30c88f624780bd003f105bab7ddfc56f20de850c diff --git a/platformio/__init__.py b/platformio/__init__.py index 04dd918b..b980d065 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (3, 6, "1rc7") +VERSION = (3, 6, 1) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" @@ -26,8 +26,8 @@ __description__ = ( "FPGA, CMSIS, SPL, AVR, Samsung ARTIK, libOpenCM3") __url__ = "https://platformio.org" -__author__ = "Ivan Kravets" -__email__ = "me@ikravets.com" +__author__ = "PlatformIO" +__email__ = "contact@platformio.org" __license__ = "Apache Software License" __copyright__ = "Copyright 2014-present PlatformIO"