Skip to content

Commit ac1b2b7

Browse files
committed
bump(mosq): 2.0.20~2 -> 2.0.20~3
2.0.20~3 Bug Fixes - Support build on older IDF branches (13b90ad) - Fix misleading error when accepting connection (fd41006, #807) - Make mosquitto component c++ compatible (c416976, #817) - include config.h before any system header (1b1ede4)
1 parent 13b90ad commit ac1b2b7

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

components/mosquitto/.cz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ commitizen:
33
bump_message: 'bump(mosq): $current_version -> $new_version'
44
pre_bump_hooks: python ../../ci/changelog.py mosquitto
55
tag_format: mosq-v$version
6-
version: 2.0.20~2
6+
version: 2.0.20~3
77
version_files:
88
- idf_component.yml

components/mosquitto/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

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

515
### Features

components/mosquitto/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Variables:
3737

3838
- void(\* handle_message_cb <br>On message callback. If configured, user function is called whenever mosquitto processes a message.
3939

40-
- char \* host <br>Address on which the broker is listening for connections
40+
- const char \* host <br>Address on which the broker is listening for connections
4141

4242
- int port <br>Port number of the broker to listen to
4343

components/mosquitto/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "2.0.20~2"
1+
version: "2.0.20~3"
22
url: https://github.com/espressif/esp-protocols/tree/master/components/mosquitto
33
description: The component provides a simple ESP32 port of mosquitto broker
44
dependencies:

components/mosquitto/port/priv_include/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
#undef isspace
2121
#define isspace(__c) (__ctype_lookup((int)__c)&_S)
2222

23-
#define VERSION "v2.0.20~2"
23+
#define VERSION "v2.0.20~3"

0 commit comments

Comments
 (0)