Skip to content

Commit

Permalink
Merge pull request #284 from embhorn/rel_v1.12
Browse files Browse the repository at this point in the history
wolfMQTT Release v1.12.0 preparation
  • Loading branch information
dgarske authored Feb 23, 2022
2 parents 147aa20 + fc0e6ae commit 8b85439
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
15 changes: 14 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
## Release Notes
### v1.12 (2/23/2022)
* Allow MqttClient_WaitType to return MQTT_CODE_CONTINUE with MT (PR #283)
* Fix decoding user property and add example (PR #282)
* Fix issue with MqttClient_Publish_WriteOnly not waiting properly for ACK
(PR #281)
* Fix MQTTv5 disconnect with props (PR #279)
* Add new publish write only API for multi-threading (PR #277)
* Fix for multithreaded cancel (PR #276)
* MQTT-SN Add disconnect_cb when disconnect recv from broker; Fix PUB ACK
return status handling (PR #274)
* Enable TLS1.3 in examples (PR #273)
* Adding windows github actions build test (PR #272)

### v1.11 (1/7/2022)
* Return correct error code in SN_Client_Connect (PR #268)
* Removing unsupported TLS and SNI options in sn-client (PR #266)
Expand Down Expand Up @@ -53,7 +66,7 @@
### v1.7 (08/21/2020)

* Fix for publish with short topic name and example. (PR #169)
Add MqttProps_ShutDown(). Fix MqttProp leaks(PR #167)
* Add MqttProps_ShutDown(). Fix MqttProp leaks(PR #167)
* Multithread fixes. (PR #166)
* Fix buffer overrun in strcpy(). Fix logic around getaddrinfo(). (PR #165)
* Fix MqttClient_WaitType for nonblock mode. (PR #164)
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# All right reserved.

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

AC_PREREQ([2.63])
AC_CONFIG_AUX_DIR([build-aux])
Expand All @@ -23,7 +23,7 @@ AC_ARG_PROGRAM
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([src/config.h])

WOLFMQTT_LIBRARY_VERSION=10:0:0
WOLFMQTT_LIBRARY_VERSION=11:0:0
# | | |
# +------+ | +---+
# | | |
Expand Down
4 changes: 2 additions & 2 deletions wolfmqtt/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
extern "C" {
#endif

#define LIBWOLFMQTT_VERSION_STRING "1.11.0"
#define LIBWOLFMQTT_VERSION_HEX 0x01011000
#define LIBWOLFMQTT_VERSION_STRING "1.12.0"
#define LIBWOLFMQTT_VERSION_HEX 0x01012000

#ifdef __cplusplus
}
Expand Down

0 comments on commit 8b85439

Please sign in to comment.