Skip to content

Commit b736940

Browse files
committed
change: Update version to 1.4.0
1 parent b33f422 commit b736940

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
1-
## Unreleased
1+
## v1.4.0 (2024-01-30)
22

33
### New Features
44

5+
- Enable idf_monitor no_reset flag be set by environment variable
6+
- add port advisory locking
57
- move decoding functions to esp-idf-panic-decoder
68

9+
### Bug Fixes
10+
11+
- correctly decode string type in ANSIColorConverter
12+
- print correct shortcut in toggle output message
13+
- don't reset chip on reconnect
14+
- unbuffered read for linux target
15+
- **serial_reader**: don't set closing wait on already closed port
16+
- running monitor on linux target does not need port
17+
- **hard_reset**: make sure that DTR is pulled up before hard resetting the chip
18+
719
## v1.3.4 (2023-11-21)
820

921
### New Features

esp_idf_monitor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .base.ansi_color_converter import ANSIColorConverter # noqa: F401
22
from .base.ansi_color_converter import get_ansi_converter # noqa: F401
33

4-
__version__ = '1.3.4'
4+
__version__ = '1.4.0'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ find = {namespaces = false}
7070
version = {attr = "esp_idf_monitor.__version__"}
7171

7272
[tool.commitizen]
73-
version = "1.3.4"
73+
version = "1.4.0"
7474
update_changelog_on_bump = true
7575
tag_format = "v$version"
7676
changelog_merge_prerelease = true

0 commit comments

Comments
 (0)