mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-30 18:57:28 +02:00
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:
@ -3,6 +3,6 @@ commitizen:
|
||||
bump_message: 'bump(mosq): $current_version -> $new_version'
|
||||
pre_bump_hooks: python ../../ci/changelog.py mosquitto
|
||||
tag_format: mosq-v$version
|
||||
version: 2.0.20~2
|
||||
version: 2.0.20~3
|
||||
version_files:
|
||||
- idf_component.yml
|
||||
|
@ -1,5 +1,15 @@
|
||||
# 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)
|
||||
|
||||
### Features
|
||||
|
@ -37,7 +37,7 @@ Variables:
|
||||
|
||||
- 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
|
||||
|
||||
|
@ -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
|
||||
description: The component provides a simple ESP32 port of mosquitto broker
|
||||
dependencies:
|
||||
|
@ -20,4 +20,4 @@
|
||||
#undef isspace
|
||||
#define isspace(__c) (__ctype_lookup((int)__c)&_S)
|
||||
|
||||
#define VERSION "v2.0.20~2"
|
||||
#define VERSION "v2.0.20~3"
|
||||
|
Reference in New Issue
Block a user