Skip to content

Commit bc5780f

Browse files
committed
bump: version 2.1.0 → 2.1.1
1 parent 4756b7f commit bc5780f

File tree

19 files changed

+33
-24
lines changed

19 files changed

+33
-24
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# CHANGELOG
22

3+
## v2.1.1 (2025-10-13)
4+
5+
### 🐛 Bug Fixes
6+
7+
- **qemu**: error when enable service `qemu` along without `idf` *(Fu Hanxi - 01efc71)*
8+
- mark the un-triggered test cases as "skipped" *(Fu Hanxi - 1b0aa5c)*
9+
- Add missing offsets for ESP32-C5 *(Lucas Saavedra Vaz - 54bc3d1)*
10+
11+
312
## v2.1.0 (2025-09-25)
413

514
### ✨ New Features

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.commitizen]
22
name = "czespressif"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
annotated_tag = true
55

66
tag_format = "v$version"

pytest-embedded-arduino/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ dynamic = ["version", "description"]
2929
requires-python = ">=3.10"
3030

3131
dependencies = [
32-
"pytest-embedded~=2.1.0",
32+
"pytest-embedded~=2.1.1",
3333
]
3434

3535
[project.optional-dependencies]
3636
serial = [
37-
"pytest-embedded-serial-esp~=2.1.0"
37+
"pytest-embedded-serial-esp~=2.1.1"
3838
]
3939

4040
[project.urls]

pytest-embedded-arduino/pytest_embedded_arduino/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
__all__ = ['ArduinoApp', 'ArduinoSerial']
2020

2121

22-
__version__ = '2.1.0'
22+
__version__ = '2.1.1'

pytest-embedded-idf/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ dynamic = ["version", "description"]
2828
requires-python = ">=3.10"
2929

3030
dependencies = [
31-
"pytest-embedded~=2.1.0",
31+
"pytest-embedded~=2.1.1",
3232
"esp-idf-panic-decoder",
3333
"esp-bool-parser>=0.1.2,<1"
3434
]
3535

3636
[project.optional-dependencies]
3737
serial = [
38-
"pytest-embedded-serial-esp~=2.1.0",
38+
"pytest-embedded-serial-esp~=2.1.1",
3939
"esp-coredump~=1.0",
4040
]
4141

pytest-embedded-idf/pytest_embedded_idf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
'UnittestMenuCase',
3434
]
3535

36-
__version__ = '2.1.0'
36+
__version__ = '2.1.1'

pytest-embedded-jtag/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dynamic = ["version", "description"]
2828
requires-python = ">=3.10"
2929

3030
dependencies = [
31-
"pytest-embedded-serial~=2.1.0",
31+
"pytest-embedded-serial~=2.1.1",
3232
]
3333

3434
[project.urls]

pytest-embedded-jtag/pytest_embedded_jtag/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
'Telnet',
1111
]
1212

13-
__version__ = '2.1.0'
13+
__version__ = '2.1.1'

pytest-embedded-nuttx/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ dynamic = ["version", "description"]
2929
requires-python = ">=3.10"
3030

3131
dependencies = [
32-
"pytest-embedded-serial~=2.1.0",
32+
"pytest-embedded-serial~=2.1.1",
3333
]
3434

3535
[project.optional-dependencies]
3636
esp = [
37-
"pytest-embedded-serial-esp~=2.1.0",
37+
"pytest-embedded-serial-esp~=2.1.1",
3838
]
3939
qemu = [
40-
"pytest-embedded-qemu~=2.1.0",
40+
"pytest-embedded-qemu~=2.1.1",
4141
]
4242

4343
[project.urls]

pytest-embedded-nuttx/pytest_embedded_nuttx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323

2424
__all__ = ['NuttxApp', 'NuttxDut', 'NuttxEspDut', 'NuttxQemuDut', 'NuttxSerial', 'NuttxSerialDut']
2525

26-
__version__ = '2.1.0'
26+
__version__ = '2.1.1'

0 commit comments

Comments
 (0)