bump(mosq): 2.0.20~2 -> 2.0.20~3

2.0.20~3
Bug Fixes
- Support build on older IDF branches (13b90ad1)
- Fix misleading error when accepting connection (fd410061, #807)
- Make mosquitto component c++ compatible (c4169765, #817)
- include config.h before any system header (1b1ede43)
This commit is contained in:
David Cermak
2025-06-27 14:34:02 +02:00
parent 13b90ad14b
commit ac1b2b7573
5 changed files with 14 additions and 4 deletions

View File

@ -3,6 +3,6 @@ commitizen:
bump_message: 'bump(mosq): $current_version -> $new_version' bump_message: 'bump(mosq): $current_version -> $new_version'
pre_bump_hooks: python ../../ci/changelog.py mosquitto pre_bump_hooks: python ../../ci/changelog.py mosquitto
tag_format: mosq-v$version tag_format: mosq-v$version
version: 2.0.20~2 version: 2.0.20~3
version_files: version_files:
- idf_component.yml - idf_component.yml

View File

@ -1,5 +1,15 @@
# Changelog # Changelog
## [2.0.20~3](https://github.com/espressif/esp-protocols/commits/mosq-v2.0.20_3)
### Bug Fixes
- Support build on older IDF branches ([13b90ad1](https://github.com/espressif/esp-protocols/commit/13b90ad1))
- Fix misleading error when accepting connection ([fd410061](https://github.com/espressif/esp-protocols/commit/fd410061), [#807](https://github.com/espressif/esp-protocols/issues/807))
- Make mosquitto component c++ compatible ([c4169765](https://github.com/espressif/esp-protocols/commit/c4169765), [#817](https://github.com/espressif/esp-protocols/issues/817))
- include config.h before any system header ([1b1ede43](https://github.com/espressif/esp-protocols/commit/1b1ede43))
## [2.0.20~2](https://github.com/espressif/esp-protocols/commits/mosq-v2.0.20_2) ## [2.0.20~2](https://github.com/espressif/esp-protocols/commits/mosq-v2.0.20_2)
### Features ### Features

View File

@ -37,7 +37,7 @@ Variables:
- void(\* handle_message_cb <br>On message callback. If configured, user function is called whenever mosquitto processes a message. - void(\* handle_message_cb <br>On message callback. If configured, user function is called whenever mosquitto processes a message.
- char \* host <br>Address on which the broker is listening for connections - const char \* host <br>Address on which the broker is listening for connections
- int port <br>Port number of the broker to listen to - int port <br>Port number of the broker to listen to

View File

@ -1,4 +1,4 @@
version: "2.0.20~2" version: "2.0.20~3"
url: https://github.com/espressif/esp-protocols/tree/master/components/mosquitto url: https://github.com/espressif/esp-protocols/tree/master/components/mosquitto
description: The component provides a simple ESP32 port of mosquitto broker description: The component provides a simple ESP32 port of mosquitto broker
dependencies: dependencies:

View File

@ -20,4 +20,4 @@
#undef isspace #undef isspace
#define isspace(__c) (__ctype_lookup((int)__c)&_S) #define isspace(__c) (__ctype_lookup((int)__c)&_S)
#define VERSION "v2.0.20~2" #define VERSION "v2.0.20~3"