diff --git a/CHANGELOG.md b/CHANGELOG.md index a7c5a85..361d749 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## v1.5.0 (2024-09-17) + +### New Features + +- add a common prefix for all messages originating from the monitor +- **esp-idf-monitor**: Add --open-port-attempts flag +- Add support for multiple ELF files +- **port_detection**: Filter out BT and WLAN debug serial ports on MacOS +- added auto color log feature + +### Bug Fixes + +- improve error message when STDIN in not attached to TTY + ## v1.4.0 (2024-01-30) ### New Features diff --git a/esp_idf_monitor/__init__.py b/esp_idf_monitor/__init__.py index 41de290..ee461ce 100644 --- a/esp_idf_monitor/__init__.py +++ b/esp_idf_monitor/__init__.py @@ -1,4 +1,4 @@ from .base.ansi_color_converter import ANSIColorConverter # noqa: F401 from .base.ansi_color_converter import get_ansi_converter # noqa: F401 -__version__ = '1.4.0' +__version__ = '1.5.0' diff --git a/pyproject.toml b/pyproject.toml index 01c1655..b644d68 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,7 +71,7 @@ find = {namespaces = false} version = {attr = "esp_idf_monitor.__version__"} [tool.commitizen] -version = "1.4.0" +version = "1.5.0" update_changelog_on_bump = true tag_format = "v$version" changelog_merge_prerelease = true