From 6660f71d0301e35cd1bc711b2462eaf02f029b93 Mon Sep 17 00:00:00 2001 From: Abhik Roy Date: Wed, 16 Apr 2025 21:32:35 +1000 Subject: [PATCH] bump(dns): First version [1.0.0] 1.0.0 Features - Add ESP DNS module with support for UDP, TCP, DoT, and DoH protocols (57cd6080) --- components/esp_dns/.cz.yaml | 2 +- components/esp_dns/CHANGELOG.md | 7 +++++++ components/esp_dns/README.md | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 components/esp_dns/CHANGELOG.md diff --git a/components/esp_dns/.cz.yaml b/components/esp_dns/.cz.yaml index 187d3872b..e4d0d7fdb 100644 --- a/components/esp_dns/.cz.yaml +++ b/components/esp_dns/.cz.yaml @@ -3,6 +3,6 @@ commitizen: bump_message: 'bump(dns): $current_version -> $new_version' pre_bump_hooks: python ../../ci/changelog.py esp_dns tag_format: esp_dns-v$version - version: 0.0.1 + version: 1.0.0 version_files: - idf_component.yml diff --git a/components/esp_dns/CHANGELOG.md b/components/esp_dns/CHANGELOG.md new file mode 100644 index 000000000..fe7bf182d --- /dev/null +++ b/components/esp_dns/CHANGELOG.md @@ -0,0 +1,7 @@ +# Changelog + +## [1.0.0](https://github.com/espressif/esp-protocols/commits/esp_dns-v1.0.0) + +### Features + +- Add ESP DNS module with support for UDP, TCP, DoT, and DoH protocols ([57cd6080](https://github.com/espressif/esp-protocols/commit/57cd6080)) diff --git a/components/esp_dns/README.md b/components/esp_dns/README.md index d323f7715..b02ada8dc 100644 --- a/components/esp_dns/README.md +++ b/components/esp_dns/README.md @@ -201,7 +201,7 @@ This component utilizes the `CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM` hook t Once you add this component to your project, it will replace the default LWIP DNS resolution automatically. -**⚠️ Warning:** This component cannot work alongside other components that use the CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM hook, such as the OpenThread component. +**⚠️ Warning:** This component cannot work alongside other components that use the `CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM` hook. ## Troubleshooting