Skip to content

Commit 1aa256d

Browse files
committed
Merge branch 'release/v6.1.18'
2 parents fc946ba + 3a133af commit 1aa256d

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

.github/workflows/deployment.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
pip install tox wheel
27+
pip install tox build
2828
2929
- name: Deployment Tests
3030
env:
@@ -34,9 +34,8 @@ jobs:
3434
run: |
3535
tox -e testcore
3636
37-
- name: Build Python source tarball
38-
# run: python setup.py sdist bdist_wheel
39-
run: python setup.py sdist
37+
- name: Build Python distributions
38+
run: python -m build
4039

4140
- name: Publish package to PyPI
4241
if: ${{ github.ref == 'refs/heads/master' }}

HISTORY.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Release Notes
88
.. |UNITTESTING| replace:: `Unit Testing <https://docs.platformio.org/en/latest/advanced/unit-testing/index.html>`__
99
.. |DEBUGGING| replace:: `Debugging <https://docs.platformio.org/en/latest/plus/debugging.html>`__
1010
.. |STATICCODEANALYSIS| replace:: `Static Code Analysis <https://docs.platformio.org/en/latest/advanced/static-code-analysis/index.html>`__
11+
.. |PIOHOME| replace:: `PIO Home <https://docs.platformio.org/en/latest/home/index.html>`__
1112

1213
.. _release_notes_6:
1314

@@ -18,6 +19,11 @@ Unlock the true potential of embedded software development with
1819
PlatformIO's collaborative ecosystem, embracing declarative principles,
1920
test-driven methodologies, and modern toolchains for unrivaled success.
2021

22+
6.1.18 (2025-03-11)
23+
~~~~~~~~~~~~~~~~~~~
24+
25+
* Resolved a regression issue that prevented |PIOHOME| from opening external links (`issue #5084 <https://github.com/platformio/platformio-core/issues/5084>`_)
26+
2127
6.1.17 (2025-02-13)
2228
~~~~~~~~~~~~~~~~~~~
2329

@@ -87,7 +93,7 @@ test-driven methodologies, and modern toolchains for unrivaled success.
8793
~~~~~~~~~~~~~~~~~~~
8894

8995
* Resolved a possible issue that may cause generated projects for `PlatformIO IDE for VSCode <https://docs.platformio.org/en/latest/integration/ide/vscode.html>`__ to fail to launch a debug session because of a missing "objdump" binary when GDB is not part of the toolchain package
90-
* Resolved a regression issue that resulted in the malfunction of the Memory Inspection feature within `PIO Home <https://docs.platformio.org/en/latest/home/index.html>`__
96+
* Resolved a regression issue that resulted in the malfunction of the Memory Inspection feature within |PIOHOME|
9197

9298
6.1.10 (2023-08-11)
9399
~~~~~~~~~~~~~~~~~~~

docs

platformio/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
VERSION = (6, 1, 17)
15+
VERSION = (6, 1, 18)
1616
__version__ = ".".join([str(s) for s in VERSION])
1717

1818
__title__ = "platformio"

platformio/dependencies.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def get_core_dependencies():
2929
def get_pip_dependencies():
3030
core = [
3131
"bottle == 0.13.*",
32-
"click >=8.0.4, <9",
32+
"click >=8.0.4, <8.1.8",
3333
"colorama",
3434
"marshmallow == 3.*",
3535
"pyelftools >=0.27, <1",
@@ -42,7 +42,7 @@ def get_pip_dependencies():
4242
home = [
4343
# PIO Home requirements
4444
"ajsonrpc == 1.2.*",
45-
"starlette >=0.19, <0.46",
45+
"starlette >=0.19, <0.47",
4646
"uvicorn >=0.16, <0.35",
4747
"wsproto == 1.*",
4848
]

0 commit comments

Comments
 (0)