Skip to content

Commit d71aee9

Browse files
authored
Merge pull request #297 from embhorn/rel_v1.13.0
wolfMQTT Release v1.13.0 preparation
2 parents 8c3cd09 + a53d3ff commit d71aee9

5 files changed

Lines changed: 20 additions & 5 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
cmake_minimum_required(VERSION 3.16)
2323

24-
project(wolfMQTT VERSION 1.12.0 LANGUAGES C)
24+
project(wolfMQTT VERSION 1.13.0 LANGUAGES C)
2525
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
2626

2727
set(MQTT_SOURCES

ChangeLog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
## Release Notes
2+
3+
### v1.13.0 (5/4/2022)
4+
* Fix windows build test by @lealem47 in #286
5+
* Add async support for wolfMQTT by @dgarske in #285
6+
* Allow message callback to set reason code for response by @embhorn in #287
7+
* Porting WolfMQTT to NUCLEO F767ZI with TOPPERS OS by @nekoman2187 in #254
8+
* Fixes for non-blocking state and large payload by @dgarske in #288
9+
* Add CMake support build by @elms in #292
10+
* Fix for improper reset of shared object by @dgarske in #291
11+
* cmake: add example option and fixes for vcpkg by @elms in #293
12+
* cmake: shared/static lib build and cleanup by @elms in #295
13+
214
### v1.12 (2/23/2022)
315
* Allow MqttClient_WaitType to return MQTT_CODE_CONTINUE with MT (PR #283)
416
* Fix decoding user property and add example (PR #282)

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ wolfMQTT client library has been tested with the following brokers:
235235
* Mosquitto by Eclipse
236236
* Paho MQTT-SN Gateway by Eclipse
237237
* VerneMQ by VerneMQ/Erlio
238+
* EMQX broker
238239

239240
## Specification Support
240241

@@ -274,6 +275,8 @@ The v5 enabled wolfMQTT client was tested with the following MQTT v5 brokers:
274275
** `./examples/mqttclient/mqttclient -h localhost`
275276
* HiveMQ Cloud
276277
** `./examples/mqttclient/mqttclient -h 833f87e253304692bd2b911f0c18dba1.s1.eu.hivemq.cloud -t -S -u wolf1 -w NEZjcm7i8eRjFKF -p 8883`
278+
* EMQX broker
279+
** `./examples/mqttclient/mqttclient -h "broker.emqx.io"`
277280

278281
### MQTT Sensor Network (MQTT-SN) Specification Support
279282

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.12.0],[https://github.com/wolfssl/wolfMQTT/issues],[wolfmqtt],[http://www.wolfssl.com])
6+
AC_INIT([wolfmqtt],[1.13.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=11:0:0
26+
WOLFMQTT_LIBRARY_VERSION=12: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.12.0"
38-
#define LIBWOLFMQTT_VERSION_HEX 0x01012000
37+
#define LIBWOLFMQTT_VERSION_STRING "1.13.0"
38+
#define LIBWOLFMQTT_VERSION_HEX 0x01013000
3939

4040
#ifdef __cplusplus
4141
}

0 commit comments

Comments
 (0)