From 10df30df1e7d9388caabaad015413d046b5fcd51 Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Fri, 18 Oct 2024 10:26:36 +0200 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.11.5=20=E2=86=92=201.11.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 16 ++++++++++++++++ pyproject.toml | 2 +- pytest-embedded-arduino/pyproject.toml | 4 ++-- .../pytest_embedded_arduino/__init__.py | 2 +- pytest-embedded-idf/pyproject.toml | 4 ++-- .../pytest_embedded_idf/__init__.py | 2 +- pytest-embedded-jtag/pyproject.toml | 2 +- .../pytest_embedded_jtag/__init__.py | 2 +- pytest-embedded-qemu/pyproject.toml | 4 ++-- .../pytest_embedded_qemu/__init__.py | 2 +- pytest-embedded-serial-esp/pyproject.toml | 2 +- .../pytest_embedded_serial_esp/__init__.py | 2 +- pytest-embedded-serial/pyproject.toml | 2 +- .../pytest_embedded_serial/__init__.py | 2 +- pytest-embedded-wokwi/pyproject.toml | 4 ++-- .../pytest_embedded_wokwi/__init__.py | 2 +- pytest-embedded/pytest_embedded/__init__.py | 2 +- 17 files changed, 36 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f25235e..74c8a4e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # CHANGELOG +## v1.11.6 (2024-10-18) + +### Feat + +- **arduino**: Support ESP32-P4 + +### Fix + +- add more supported targets into App.RISCV32_TARGETS +- **qemu**: get default toolchain path correctly based on target +- **serial**: close serial port when exception happens + +### Refactor + +- **jtag**: remove deprecate warning from telnetlib.py by pulling telnetlib.py from python v3.12.6 + ## v1.11.5 (2024-08-19) ### Fix diff --git a/pyproject.toml b/pyproject.toml index ce844442..633e0b8d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.commitizen] name = "cz_conventional_commits" -version = "1.11.5" +version = "1.11.6" tag_format = "v$version" version_files = [ "pytest-embedded/pytest_embedded/__init__.py", diff --git a/pytest-embedded-arduino/pyproject.toml b/pytest-embedded-arduino/pyproject.toml index 3404d5e0..ecb7c2b1 100644 --- a/pytest-embedded-arduino/pyproject.toml +++ b/pytest-embedded-arduino/pyproject.toml @@ -31,12 +31,12 @@ dynamic = ["version", "description"] requires-python = ">=3.7" dependencies = [ - "pytest-embedded~=1.11.5", + "pytest-embedded~=1.11.6", ] [project.optional-dependencies] serial = [ - "pytest-embedded-serial-esp~=1.11.5" + "pytest-embedded-serial-esp~=1.11.6" ] [project.urls] diff --git a/pytest-embedded-arduino/pytest_embedded_arduino/__init__.py b/pytest-embedded-arduino/pytest_embedded_arduino/__init__.py index 47347fa4..3687a5d2 100644 --- a/pytest-embedded-arduino/pytest_embedded_arduino/__init__.py +++ b/pytest-embedded-arduino/pytest_embedded_arduino/__init__.py @@ -19,4 +19,4 @@ __all__ = ['ArduinoApp', 'ArduinoSerial'] -__version__ = '1.11.5' +__version__ = '1.11.6' diff --git a/pytest-embedded-idf/pyproject.toml b/pytest-embedded-idf/pyproject.toml index df77825f..0f02044e 100644 --- a/pytest-embedded-idf/pyproject.toml +++ b/pytest-embedded-idf/pyproject.toml @@ -30,13 +30,13 @@ dynamic = ["version", "description"] requires-python = ">=3.7" dependencies = [ - "pytest-embedded~=1.11.5", + "pytest-embedded~=1.11.6", "esp-idf-panic-decoder", ] [project.optional-dependencies] serial = [ - "pytest-embedded-serial-esp~=1.11.5", + "pytest-embedded-serial-esp~=1.11.6", "esp-coredump~=1.0", ] diff --git a/pytest-embedded-idf/pytest_embedded_idf/__init__.py b/pytest-embedded-idf/pytest_embedded_idf/__init__.py index c4e474d1..a3bd7b09 100644 --- a/pytest-embedded-idf/pytest_embedded_idf/__init__.py +++ b/pytest-embedded-idf/pytest_embedded_idf/__init__.py @@ -33,4 +33,4 @@ 'UnittestMenuCase', ] -__version__ = '1.11.5' +__version__ = '1.11.6' diff --git a/pytest-embedded-jtag/pyproject.toml b/pytest-embedded-jtag/pyproject.toml index 6efcb38a..1104acc0 100644 --- a/pytest-embedded-jtag/pyproject.toml +++ b/pytest-embedded-jtag/pyproject.toml @@ -30,7 +30,7 @@ dynamic = ["version", "description"] requires-python = ">=3.7" dependencies = [ - "pytest-embedded-serial~=1.11.5", + "pytest-embedded-serial~=1.11.6", ] [project.urls] diff --git a/pytest-embedded-jtag/pytest_embedded_jtag/__init__.py b/pytest-embedded-jtag/pytest_embedded_jtag/__init__.py index e7b63a00..a190247b 100644 --- a/pytest-embedded-jtag/pytest_embedded_jtag/__init__.py +++ b/pytest-embedded-jtag/pytest_embedded_jtag/__init__.py @@ -10,4 +10,4 @@ 'Telnet', ] -__version__ = '1.11.5' +__version__ = '1.11.6' diff --git a/pytest-embedded-qemu/pyproject.toml b/pytest-embedded-qemu/pyproject.toml index bc10a0c0..ce5e7812 100644 --- a/pytest-embedded-qemu/pyproject.toml +++ b/pytest-embedded-qemu/pyproject.toml @@ -30,13 +30,13 @@ dynamic = ["version", "description"] requires-python = ">=3.7" dependencies = [ - "pytest-embedded~=1.11.5", + "pytest-embedded~=1.11.6", "qemu.qmp==0.0.3" ] [project.optional-dependencies] idf = [ - "pytest-embedded-idf~=1.11.5", + "pytest-embedded-idf~=1.11.6", ] [project.urls] diff --git a/pytest-embedded-qemu/pytest_embedded_qemu/__init__.py b/pytest-embedded-qemu/pytest_embedded_qemu/__init__.py index ca1a3bc6..fc92625b 100644 --- a/pytest-embedded-qemu/pytest_embedded_qemu/__init__.py +++ b/pytest-embedded-qemu/pytest_embedded_qemu/__init__.py @@ -31,4 +31,4 @@ 'QemuDut', ] -__version__ = '1.11.5' +__version__ = '1.11.6' diff --git a/pytest-embedded-serial-esp/pyproject.toml b/pytest-embedded-serial-esp/pyproject.toml index 7f912d17..f13b397f 100644 --- a/pytest-embedded-serial-esp/pyproject.toml +++ b/pytest-embedded-serial-esp/pyproject.toml @@ -30,7 +30,7 @@ dynamic = ["version", "description"] requires-python = ">=3.7" dependencies = [ - "pytest-embedded-serial~=1.11.5", + "pytest-embedded-serial~=1.11.6", "esptool~=4.5", ] diff --git a/pytest-embedded-serial-esp/pytest_embedded_serial_esp/__init__.py b/pytest-embedded-serial-esp/pytest_embedded_serial_esp/__init__.py index 226a711f..bf43ac1c 100644 --- a/pytest-embedded-serial-esp/pytest_embedded_serial_esp/__init__.py +++ b/pytest-embedded-serial-esp/pytest_embedded_serial_esp/__init__.py @@ -6,4 +6,4 @@ 'EspSerial', ] -__version__ = '1.11.5' +__version__ = '1.11.6' diff --git a/pytest-embedded-serial/pyproject.toml b/pytest-embedded-serial/pyproject.toml index be088fc1..6e51525c 100644 --- a/pytest-embedded-serial/pyproject.toml +++ b/pytest-embedded-serial/pyproject.toml @@ -30,7 +30,7 @@ dynamic = ["version", "description"] requires-python = ">=3.7" dependencies = [ - "pytest-embedded~=1.11.5", + "pytest-embedded~=1.11.6", "pyserial~=3.0", ] diff --git a/pytest-embedded-serial/pytest_embedded_serial/__init__.py b/pytest-embedded-serial/pytest_embedded_serial/__init__.py index a80df5a7..ed8dd6b4 100644 --- a/pytest-embedded-serial/pytest_embedded_serial/__init__.py +++ b/pytest-embedded-serial/pytest_embedded_serial/__init__.py @@ -8,4 +8,4 @@ 'SerialDut', ] -__version__ = '1.11.5' +__version__ = '1.11.6' diff --git a/pytest-embedded-wokwi/pyproject.toml b/pytest-embedded-wokwi/pyproject.toml index d5eb3707..5a1b0e93 100644 --- a/pytest-embedded-wokwi/pyproject.toml +++ b/pytest-embedded-wokwi/pyproject.toml @@ -31,13 +31,13 @@ dynamic = ["version", "description"] requires-python = ">=3.7" dependencies = [ - "pytest-embedded~=1.11.5", + "pytest-embedded~=1.11.6", "toml~=0.10.2", ] [project.optional-dependencies] idf = [ - "pytest-embedded-idf~=1.11.5", + "pytest-embedded-idf~=1.11.6", ] [project.urls] diff --git a/pytest-embedded-wokwi/pytest_embedded_wokwi/__init__.py b/pytest-embedded-wokwi/pytest_embedded_wokwi/__init__.py index d620a764..feeab9c1 100644 --- a/pytest-embedded-wokwi/pytest_embedded_wokwi/__init__.py +++ b/pytest-embedded-wokwi/pytest_embedded_wokwi/__init__.py @@ -11,4 +11,4 @@ 'WokwiDut', ] -__version__ = '1.11.5' +__version__ = '1.11.6' diff --git a/pytest-embedded/pytest_embedded/__init__.py b/pytest-embedded/pytest_embedded/__init__.py index ba9e4837..e94c35c7 100644 --- a/pytest-embedded/pytest_embedded/__init__.py +++ b/pytest-embedded/pytest_embedded/__init__.py @@ -6,4 +6,4 @@ __all__ = ['App', 'Dut', 'DutFactory'] -__version__ = '1.11.5' +__version__ = '1.11.6'