From b9920b286f3156a1d26f279374552fec7135b87e Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 11 Jul 2022 13:36:32 +0300 Subject: [PATCH 1/2] CI: Run deployment on the master branch --- .github/workflows/deployment.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 629a06d5..9d652a7d 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -3,6 +3,7 @@ name: Deployment on: push: branches: + - "master" - "release/**" jobs: From cd4f5541ac2523a3f46021bb3aa218087e2c1e20 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 18 Jul 2022 17:26:10 +0300 Subject: [PATCH 2/2] Bump version to 6.1.2 --- HISTORY.rst | 2 +- docs | 2 +- platformio/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index e05d6706..db6444eb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -13,7 +13,7 @@ PlatformIO Core 6 **A professional collaborative platform for declarative, safety-critical, and test-driven embedded development.** -6.1.2 (2022-07-??) +6.1.2 (2022-07-18) ~~~~~~~~~~~~~~~~~~ * Export a ``PIO_UNIT_TESTING`` macro to the project source files and dependent libraries in the |UNITTESTING| mode diff --git a/docs b/docs index 044b6d24..0a58185b 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 044b6d24a6e9392a2137b5ab7d2e2f95882773fd +Subproject commit 0a58185b4a983db4478cfba41307b02f22461543 diff --git a/platformio/__init__.py b/platformio/__init__.py index f449d27c..594635e6 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (6, 1, "2a3") +VERSION = (6, 1, 2) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"