Skip to content

Commit 1f62de0

Browse files
committed
Release v2.0.5
2 parents a3e7548 + b1db395 commit 1f62de0

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

.github/workflows/actions_build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Github Actions Build
22

3-
on: [push]
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
tags-ignore:
8+
- '**'
49

510
env:
611
COMMS_TAG: v5.2.7

client/lib/include/cc_mqttsn_client/common.h

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

2727
/// @brief Patch level of the library
2828
/// @ingroup global
29-
#define CC_MQTTSN_CLIENT_PATCH_VERSION 4U
29+
#define CC_MQTTSN_CLIENT_PATCH_VERSION 5U
3030

3131
/// @brief Macro to create numeric version as single unsigned number
3232
#define CC_MQTTSN_CLIENT_MAKE_VERSION(major_, minor_, patch_) \

gateway/app/gateway/GatewayApp.cpp

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,7 @@ bool GatewayApp::start(int argc, const char* argv[])
107107
return;
108108
}
109109

110-
boost::asio::post(
111-
m_io,
112-
[this, iter]()
113-
{
114-
m_sessions.erase(iter);
115-
});
116-
110+
m_sessions.erase(iter);
117111
});
118112

119113
if (!session->start()) {

gateway/lib/include/cc_mqttsn_gateway/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#define CC_MQTTSN_GW_MINOR_VERSION 0U
1818

1919
/// @brief Patch level of the library
20-
#define CC_MQTTSN_GW_PATCH_VERSION 4U
20+
#define CC_MQTTSN_GW_PATCH_VERSION 5U
2121

2222
/// @brief Macro to create numeric version as single unsigned number
2323
#define CC_MQTTSN_GW_MAKE_VERSION(major_, minor_, patch_) \

0 commit comments

Comments
 (0)