Skip to content

Commit

Permalink
wolfMQTT version 0.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarske committed Sep 29, 2016
1 parent 8e2aa52 commit 1871351
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ We setup a wolfMQTT IoT Hub on the Azure server for testing. We added a device c

## Release Notes

### v0.10 (09/26/16)
* Enabled big endian support.
* Fixes for building with Visual Studio.

### v0.9 (08/22/16)
* Added Microchip Harmony support (see new readme in `IDE/Microchip-Harmony/README.md`).
* Added non-blocking mode `--enable-nonblock` or `WOLFMQTT_NONBLOCK`, which uses new `MQTT_CODE_CONTINUE` response code.
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright (C) 2015 wolfSSL Inc.
# All right reserved.

AC_INIT([wolfmqtt], [0.9], [http://wolfssl.com], [wolfmqtt])
AC_INIT([wolfmqtt], [0.10], [http://wolfssl.com], [wolfmqtt])
AC_PREREQ([2.63])
AC_CONFIG_AUX_DIR([build-aux])

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 "0.9"
#define LIBWOLFMQTT_VERSION_HEX 0x00009000
#define LIBWOLFMQTT_VERSION_STRING "0.10"
#define LIBWOLFMQTT_VERSION_HEX 0x00010000

#ifdef __cplusplus
}
Expand Down

0 comments on commit 1871351

Please sign in to comment.