From 9f1dd3dd5de198831fd221bfcbc663b1fedf67de Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 30 Aug 2019 15:41:49 +0300 Subject: [PATCH] Bump version to 4.0.3 --- HISTORY.rst | 2 +- docs | 2 +- platformio/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8b8b8c95..f9f1ccc3 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,7 +6,7 @@ Release Notes PlatformIO 4.0 -------------- -4.0.3 (2019-??-??) +4.0.3 (2019-08-30) ~~~~~~~~~~~~~~~~~~ * Added support for multi-environment PlatformIO project for `CLion IDE `__ (`issue #2824 `_) diff --git a/docs b/docs index 771f77b1..704ff85c 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 771f77b1552e3b1a6f800ea91c192d30ae002ceb +Subproject commit 704ff85c7de13079a28a7bd9a7fb2adefb071eee diff --git a/platformio/__init__.py b/platformio/__init__.py index 11b583ae..1b010521 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, "3rc1") +VERSION = (4, 0, 3) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/setup.py b/setup.py index 14d35d90..7d37ad42 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ install_requires = [ "colorama", "pyserial>=3,<4,!=3.3", "requests>=2.4.0,<3", - "semantic_version>=2.8.0,<3", + "semantic_version>=2.8.1,<3", "tabulate>=0.8.3,<1" ]