Skip to content

Commit 5a9f318

Browse files
committed
bump: version 2.5.0 → 2.6.0
1 parent 5c2216a commit 5a9f318

File tree

19 files changed

+63
-24
lines changed

19 files changed

+63
-24
lines changed

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
1+
<a href="https://www.espressif.com">
2+
<img src="https://www.espressif.com/sites/all/themes/espressif/logo-black.svg" align="right" height="20" />
3+
</a>
4+
15
# CHANGELOG
26

7+
> All notable changes to this project are documented in this file.
8+
> This list is not exhaustive - only important changes, fixes, and new features in the code are reflected here.
9+
10+
<div style="text-align: center;">
11+
<a href="https://keepachangelog.com/en/1.1.0/">
12+
<img alt="Static Badge" src="https://img.shields.io/badge/Keep%20a%20Changelog-v1.1.0-salmon?logo=keepachangelog&logoColor=black&labelColor=white&link=https%3A%2F%2Fkeepachangelog.com%2Fen%2F1.1.0%2F">
13+
</a>
14+
<a href="https://www.conventionalcommits.org/en/v1.0.0/">
15+
<img alt="Static Badge" src="https://img.shields.io/badge/Conventional%20Commits-v1.0.0-pink?logo=conventionalcommits&logoColor=black&labelColor=white&link=https%3A%2F%2Fwww.conventionalcommits.org%2Fen%2Fv1.0.0%2F">
16+
</a>
17+
<a href="https://semver.org/spec/v2.0.0.html">
18+
<img alt="Static Badge" src="https://img.shields.io/badge/Semantic%20Versioning-v2.0.0-grey?logo=semanticrelease&logoColor=black&labelColor=white&link=https%3A%2F%2Fsemver.org%2Fspec%2Fv2.0.0.html">
19+
</a>
20+
</div>
21+
<hr>
22+
23+
## v2.6.0 (2026-01-16)
24+
25+
### ✨ New Features
26+
27+
- support 'skip_decode_panic', split panic decode output and coredump output *(Fu Hanxi - db11168)*
28+
29+
### 🐛 Bug Fixes
30+
31+
- **idf**: panic decoding. Remove '--panic-output-decode-script' cli option *(Ivan Grokhotkov - 57e7954)*
32+
33+
334
## v2.5.0 (2025-12-19)
435

536
### ✨ New Features
@@ -14,13 +45,15 @@
1445

1546
- **arduino**: Rework arduino app *(Lucas Saavedra Vaz - dff48ba)*
1647

48+
---
1749

1850
## v2.4.0 (2025-11-12)
1951

2052
### ✨ New Features
2153

2254
- **arduino**: Add support for C2, C61 and fix deprecated commands *(Lucas Saavedra Vaz - c09d745)*
2355

56+
---
2457

2558
## v2.3.0 (2025-11-06)
2659

@@ -33,27 +66,31 @@
3366
- remove the 1.x changelog *(Fu Hanxi - 0c6edaf)*
3467
- small fixes *(Fu Hanxi - e5d06e0)*
3568

69+
---
3670

3771
## v2.2.1 (2025-10-27)
3872

3973
### 🐛 Bug Fixes
4074

4175
- Raise exceptions for Dut created by DutFactory *(Evgeny Torbin - c73f684)*
4276

77+
---
4378

4479
## v2.2.0 (2025-10-24)
4580

4681
### ✨ New Features
4782

4883
- reconnect after serial lost connection *(horw - 019e38a)*
4984

85+
---
5086

5187
## v2.1.2 (2025-10-16)
5288

5389
### 🐛 Bug Fixes
5490

5591
- Fix ESP32-C5 bootloader offset *(Lucas Saavedra Vaz - b77e2f7)*
5692

93+
---
5794

5895
## v2.1.1 (2025-10-13)
5996

@@ -63,6 +100,7 @@
63100
- mark the un-triggered test cases as "skipped" *(Fu Hanxi - 1b0aa5c)*
64101
- Add missing offsets for ESP32-C5 *(Lucas Saavedra Vaz - 54bc3d1)*
65102

103+
---
66104

67105
## v2.1.0 (2025-09-25)
68106

@@ -71,6 +109,7 @@
71109
- add support for efuse in qemu *(horw - e682c45)*
72110
- add support for virtual efuse on NuttX *(Filipe Cavalcanti - 5e946a0)*
73111

112+
---
74113

75114
## v2.0.0 (2025-09-23)
76115

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.5.0"
3+
version = "2.6.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.5.0",
32+
"pytest-embedded~=2.6.0",
3333
]
3434

3535
[project.optional-dependencies]
3636
serial = [
37-
"pytest-embedded-serial-esp~=2.5.0"
37+
"pytest-embedded-serial-esp~=2.6.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.5.0'
22+
__version__ = '2.6.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.5.0",
31+
"pytest-embedded~=2.6.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.5.0",
38+
"pytest-embedded-serial-esp~=2.6.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.5.0'
36+
__version__ = '2.6.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.5.0",
31+
"pytest-embedded-serial~=2.6.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.5.0'
13+
__version__ = '2.6.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.5.0",
32+
"pytest-embedded-serial~=2.6.0",
3333
]
3434

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

0 commit comments

Comments
 (0)