From b239628ac3186633fbbe246a2eac50f4206fad1b Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 5 Jul 2023 15:30:40 +0300 Subject: [PATCH 1/2] Install "wheel" package for package publishing --- .github/workflows/deployment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 3f0a4529..370333a5 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -24,7 +24,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install tox + pip install tox wheel - name: Deployment Tests env: From 3d48f3ec04dc8a15d67503391c5fca543cf3ce2a Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 6 Jul 2023 14:33:15 +0300 Subject: [PATCH 2/2] Bump version to 6.1.9 --- 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 5c8a5a88..8ec95eb4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -15,7 +15,7 @@ PlatformIO Core 6 **A professional collaborative platform for declarative, safety-critical, and test-driven embedded development.** -6.1.9 (2023-??-??) +6.1.9 (2023-07-06) ~~~~~~~~~~~~~~~~~~ * Rectified a regression bug that occurred when the ``-include`` flag was passed via the `build_flags `__ option as a relative path and subsequently expanded (`issue #4683 `_) diff --git a/docs b/docs index f74e6ca2..f8dbf012 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit f74e6ca2346e4523fc841d2871114c45e36f651d +Subproject commit f8dbf012e4a7ddbe79279540e95c08a2d108c725 diff --git a/platformio/__init__.py b/platformio/__init__.py index 79281da5..c720d005 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 = (6, 1, "9rc1") +VERSION = (6, 1, 9) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"