Skip to content

Commit deec71f

Browse files
committed
Release v0.3.1
2 parents 40fa608 + eb6fa36 commit deec71f

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ configuration:
2020

2121
environment:
2222
COMMS_BRANCH: v5.2.2
23-
CC_MQTT5_BRANCH: v2.5
23+
CC_MQTT5_BRANCH: v2.6
2424
matrix:
2525
- CPP_STD: 17
2626
- CPP_STD: 20

.github/workflows/actions_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push]
44

55
env:
66
COMMS_BRANCH: v5.2.2
7-
CC_MQTT5_BRANCH: v2.5
7+
CC_MQTT5_BRANCH: v2.6
88

99
jobs:
1010
build_gcc_ubuntu_22_04:

client/lib/include/cc_mqtt5_client/common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ extern "C" {
2525

2626
/// @brief Patch level of the library
2727
/// @ingroup global
28-
#define CC_MQTT5_CLIENT_PATCH_VERSION 0U
28+
#define CC_MQTT5_CLIENT_PATCH_VERSION 1U
2929

3030
/// @brief Macro to create numeric version as single unsigned number
3131
/// @ingroup global

client/lib/src/ProtocolDefs.h

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

2020
#include <cstdint>
2121

22-
static_assert(CC_MQTT5_VERSION <= COMMS_MAKE_VERSION(2, 5, 0),
22+
static_assert(CC_MQTT5_VERSION <= COMMS_MAKE_VERSION(2, 6, 0),
2323
"The version of the cc_mqtt5 library is too low.");
2424

2525
namespace cc_mqtt5_client

client/lib/templ/ProtocolOptions.h.templ

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55

66
#include <tuple>
77

8-
static_assert(COMMS_MAKE_VERSION(2, 4, 0) <= CC_MQTT5_VERSION, "The version of cc_mqtt5 protocol definition is too old");
9-
108
namespace cc_mqtt5_client
119
{
1210

0 commit comments

Comments
 (0)