Skip to content

Commit 8b85439

Browse files
authored
Merge pull request #284 from embhorn/rel_v1.12
wolfMQTT Release v1.12.0 preparation
2 parents 147aa20 + fc0e6ae commit 8b85439

3 files changed

Lines changed: 18 additions & 5 deletions

File tree

ChangeLog.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
## Release Notes
2+
### v1.12 (2/23/2022)
3+
* Allow MqttClient_WaitType to return MQTT_CODE_CONTINUE with MT (PR #283)
4+
* Fix decoding user property and add example (PR #282)
5+
* Fix issue with MqttClient_Publish_WriteOnly not waiting properly for ACK
6+
(PR #281)
7+
* Fix MQTTv5 disconnect with props (PR #279)
8+
* Add new publish write only API for multi-threading (PR #277)
9+
* Fix for multithreaded cancel (PR #276)
10+
* MQTT-SN Add disconnect_cb when disconnect recv from broker; Fix PUB ACK
11+
return status handling (PR #274)
12+
* Enable TLS1.3 in examples (PR #273)
13+
* Adding windows github actions build test (PR #272)
14+
215
### v1.11 (1/7/2022)
316
* Return correct error code in SN_Client_Connect (PR #268)
417
* Removing unsupported TLS and SNI options in sn-client (PR #266)
@@ -53,7 +66,7 @@
5366
### v1.7 (08/21/2020)
5467

5568
* Fix for publish with short topic name and example. (PR #169)
56-
Add MqttProps_ShutDown(). Fix MqttProp leaks(PR #167)
69+
* Add MqttProps_ShutDown(). Fix MqttProp leaks(PR #167)
5770
* Multithread fixes. (PR #166)
5871
* Fix buffer overrun in strcpy(). Fix logic around getaddrinfo(). (PR #165)
5972
* Fix MqttClient_WaitType for nonblock mode. (PR #164)

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# All right reserved.
44

55
AC_COPYRIGHT([Copyright (C) 2014-2022 wolfSSL Inc.])
6-
AC_INIT([wolfmqtt],[1.11.0],[https://github.com/wolfssl/wolfMQTT/issues],[wolfmqtt],[http://www.wolfssl.com])
6+
AC_INIT([wolfmqtt],[1.12.0],[https://github.com/wolfssl/wolfMQTT/issues],[wolfmqtt],[http://www.wolfssl.com])
77

88
AC_PREREQ([2.63])
99
AC_CONFIG_AUX_DIR([build-aux])
@@ -23,7 +23,7 @@ AC_ARG_PROGRAM
2323
AC_CONFIG_MACRO_DIR([m4])
2424
AC_CONFIG_HEADERS([src/config.h])
2525

26-
WOLFMQTT_LIBRARY_VERSION=10:0:0
26+
WOLFMQTT_LIBRARY_VERSION=11:0:0
2727
# | | |
2828
# +------+ | +---+
2929
# | | |

wolfmqtt/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
extern "C" {
3535
#endif
3636

37-
#define LIBWOLFMQTT_VERSION_STRING "1.11.0"
38-
#define LIBWOLFMQTT_VERSION_HEX 0x01011000
37+
#define LIBWOLFMQTT_VERSION_STRING "1.12.0"
38+
#define LIBWOLFMQTT_VERSION_HEX 0x01012000
3939

4040
#ifdef __cplusplus
4141
}

0 commit comments

Comments
 (0)