Skip to content

Commit

Permalink
Release v2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Oct 14, 2024
2 parents a3e7548 + b1db395 commit 1f62de0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/actions_build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Github Actions Build

on: [push]
on:
push:
branches:
- '**'
tags-ignore:
- '**'

env:
COMMS_TAG: v5.2.7
Expand Down
2 changes: 1 addition & 1 deletion client/lib/include/cc_mqttsn_client/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ extern "C" {

/// @brief Patch level of the library
/// @ingroup global
#define CC_MQTTSN_CLIENT_PATCH_VERSION 4U
#define CC_MQTTSN_CLIENT_PATCH_VERSION 5U

/// @brief Macro to create numeric version as single unsigned number
#define CC_MQTTSN_CLIENT_MAKE_VERSION(major_, minor_, patch_) \
Expand Down
8 changes: 1 addition & 7 deletions gateway/app/gateway/GatewayApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,7 @@ bool GatewayApp::start(int argc, const char* argv[])
return;
}

boost::asio::post(
m_io,
[this, iter]()
{
m_sessions.erase(iter);
});

m_sessions.erase(iter);
});

if (!session->start()) {
Expand Down
2 changes: 1 addition & 1 deletion gateway/lib/include/cc_mqttsn_gateway/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#define CC_MQTTSN_GW_MINOR_VERSION 0U

/// @brief Patch level of the library
#define CC_MQTTSN_GW_PATCH_VERSION 4U
#define CC_MQTTSN_GW_PATCH_VERSION 5U

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

0 comments on commit 1f62de0

Please sign in to comment.