Skip to content

Commit 52232cb

Browse files
committed
bump: version 2.4.0 → 2.5.0
1 parent fcf7919 commit 52232cb

File tree

19 files changed

+39
-24
lines changed

19 files changed

+39
-24
lines changed

CHANGELOG.md

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

3+
## v2.5.0 (2025-12-19)
4+
5+
### ✨ New Features
6+
7+
- **wokwi**: C5 support + add wokwi to local packages *(Lucas Saavedra Vaz - bb0152a)*
8+
9+
### 🐛 Bug Fixes
10+
11+
- **readme**: Fix Arduino readme *(Lucas Saavedra Vaz - 70b3581)*
12+
13+
### 🏗️ Changes
14+
15+
- **arduino**: Rework arduino app *(Lucas Saavedra Vaz - dff48ba)*
16+
17+
318
## v2.4.0 (2025-11-12)
419

520
### ✨ 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.4.0"
3+
version = "2.5.0"
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.4.0",
32+
"pytest-embedded~=2.5.0",
3333
]
3434

3535
[project.optional-dependencies]
3636
serial = [
37-
"pytest-embedded-serial-esp~=2.4.0"
37+
"pytest-embedded-serial-esp~=2.5.0"
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.4.0'
22+
__version__ = '2.5.0'

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.4.0",
31+
"pytest-embedded~=2.5.0",
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.4.0",
38+
"pytest-embedded-serial-esp~=2.5.0",
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.4.0'
36+
__version__ = '2.5.0'

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.4.0",
31+
"pytest-embedded-serial~=2.5.0",
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.4.0'
13+
__version__ = '2.5.0'

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.4.0",
32+
"pytest-embedded-serial~=2.5.0",
3333
]
3434

3535
[project.optional-dependencies]
3636
esp = [
37-
"pytest-embedded-serial-esp~=2.4.0",
37+
"pytest-embedded-serial-esp~=2.5.0",
3838
]
3939
qemu = [
40-
"pytest-embedded-qemu~=2.4.0",
40+
"pytest-embedded-qemu~=2.5.0",
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.4.0'
26+
__version__ = '2.5.0'

0 commit comments

Comments
 (0)