Skip to content

Commit 54820f3

Browse files
authored
Merge pull request #26 from dgarske/rel_v013
Prep for wolfMQTT release v0.13.
2 parents 07ae0e8 + 53cea8f commit 54820f3

3 files changed

Lines changed: 15 additions & 5 deletions

File tree

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,17 @@ We setup an AWS IoT endpoint and testing device certificate for testing. The AWS
8080

8181
## Release Notes
8282

83+
### v0.13 (05/10/17)
84+
* Fixed issue with `msg->stat` in non-blocking.
85+
* Fixed Arduino library build.
86+
* Fixed examples with non-blocking (--enable-nonblock).
87+
* Enhancement to pass network callback return codes through context when using TLS.
88+
* Added option to disable the blocking timeouts for `select()` using `--disable-timeout` (or `WOLFMQTT_NO_TIMEOUT`).
89+
* Added option to disable STDIN/fgets capture for examples using `--disable-stdincap` (or `WOLFMQTT_NO_STDIN_CAP`)
90+
* Refactor to use new `MQTT_CODE_STDIN_WAKE` return code for examples using STDIN to send publish messages (normal blocking mode only).
91+
8392
### v0.12 (12/20/16)
84-
* Fixes issue with read timeout in non-blocking mode with TLS enabled being teated as socket error.
93+
* Fixes issue with read timeout in non-blocking mode with TLS enabled being teated as socket error.
8594
* Fixed issue with “msg->stat” not getting reset on failure or timeout.
8695
* Fix to not link libwolfssl with ./configure --disable-tls.
8796
* Added AWS IoT Example and test script.

configure.ac

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
# Copyright (C) 2016 wolfSSL Inc.
33
# All right reserved.
44

5-
AC_INIT([wolfmqtt], [0.12], [http://wolfssl.com], [wolfmqtt])
5+
AC_INIT([wolfmqtt],[0.13.0],[https://github.com/wolfssl/wolfMQTT/issues],[wolfmqtt],[http://www.wolfssl.com])
6+
67
AC_PREREQ([2.63])
78
AC_CONFIG_AUX_DIR([build-aux])
89

@@ -17,7 +18,7 @@ AC_ARG_PROGRAM
1718
AC_CONFIG_MACRO_DIR([m4])
1819
AC_CONFIG_HEADERS([src/config.h])
1920

20-
WOLFMQTT_LIBRARY_VERSION=1:0:0
21+
WOLFMQTT_LIBRARY_VERSION=1:1:0
2122
# | | |
2223
# +------+ | +---+
2324
# | | |

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 "0.12"
38-
#define LIBWOLFMQTT_VERSION_HEX 0x00012000
37+
#define LIBWOLFMQTT_VERSION_STRING "0.13.0"
38+
#define LIBWOLFMQTT_VERSION_HEX 0x00013000
3939

4040
#ifdef __cplusplus
4141
}

0 commit comments

Comments
 (0)