File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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~7
6+ version : 2.0.20~8
77 version_files :
88 - idf_component.yml
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 2.0.20~ 8] ( https://github.com/espressif/esp-protocols/commits/mosq-v2.0.20_8 )
4+
5+ ### Bug Fixes
6+
7+ - Undef POSIX_C_SOURCE as mosquitto config defines it ([ 07de5c0e] ( https://github.com/espressif/esp-protocols/commit/07de5c0e ) )
8+
39## [ 2.0.20~ 7] ( https://github.com/espressif/esp-protocols/commits/mosq-v2.0.20_7 )
410
511### Features
Original file line number Diff line number Diff line change 1- version : " 2.0.20~7 "
1+ version : " 2.0.20~8 "
22url : https://github.com/espressif/esp-protocols/tree/master/components/mosquitto
33description : The component provides a simple ESP32 port of mosquitto broker
44dependencies :
Original file line number Diff line number Diff line change 44 * SPDX-License-Identifier: Apache-2.0
55 */
66#pragma once
7+ #undef _POSIX_C_SOURCE /* Note: mosquitto's config.h bug: defines _POSIX_C_SOURCE=200809L
8+ * - fixed in v2.1.0, but IDF port doesn't support yet (due to json deps)
9+ */
710#include_next "config.h"
811
912/*
2326#define isspace (__c ) (__ctype_lookup((int)__c)&_S)
2427#endif
2528
26- #define VERSION "v2.0.20~7 "
29+ #define VERSION "v2.0.20~8 "
You can’t perform that action at this time.
0 commit comments