Skip to content

Commit

Permalink
Merge pull request #303 from embhorn/rel_v1.14.0
Browse files Browse the repository at this point in the history
wolfMQTT Release v1.14.0 preparation
  • Loading branch information
dgarske authored Jul 25, 2022
2 parents c02e2b7 + ddf9b6d commit 55fc0a5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

cmake_minimum_required(VERSION 3.16)

project(wolfMQTT VERSION 1.13.0 LANGUAGES C)
project(wolfMQTT VERSION 1.14.0 LANGUAGES C)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)

set(MQTT_SOURCES
Expand Down
7 changes: 7 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## Release Notes

### v1.14.0 (7/25/2022)
* Support post-quantum KYBER_LEVEL1 and P256_KYBER_LEVEL1 with FALCON_LEVEL1
in wolfMQTT. by @anhu #300
* Add WOLFMQTT_USE_CB_ON_DISCONNECT for CB on client disconnect by @embhorn
in #302
* Fix to release connect ack props by @embhorn in #301

### v1.13.0 (5/4/2022)
* Fix windows build test by @lealem47 in #286
* Add async support for wolfMQTT by @dgarske in #285
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.13.0],[https://github.com/wolfssl/wolfMQTT/issues],[wolfmqtt],[http://www.wolfssl.com])
AC_INIT([wolfmqtt],[1.14.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=12:0:0
WOLFMQTT_LIBRARY_VERSION=13: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.13.0"
#define LIBWOLFMQTT_VERSION_HEX 0x01013000
#define LIBWOLFMQTT_VERSION_STRING "1.14.0"
#define LIBWOLFMQTT_VERSION_HEX 0x01014000

#ifdef __cplusplus
}
Expand Down

0 comments on commit 55fc0a5

Please sign in to comment.