Skip to content

Commit a1336ff

Browse files
committed
Release v2.0.3
2 parents ba80c07 + 7aceebe commit a1336ff

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

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 2U
29+
#define CC_MQTTSN_CLIENT_PATCH_VERSION 3U
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/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function (bin_cc_mqttsn_gateway_app)
1717
)
1818

1919
add_executable(${name} ${src})
20-
target_link_libraries(${name} cc::${MQTTSN_GATEWAY_LIB_NAME} Boost::system Boost::program_options ${EXTRA_BOOST_TARGETS})
20+
target_link_libraries(${name} cc::${MQTTSN_GATEWAY_LIB_NAME} Boost::system Boost::program_options ${EXTRA_BOOST_TARGETS} ${CMAKE_THREAD_LIBS_INIT})
2121

2222
install (
2323
TARGETS ${name}
@@ -32,6 +32,7 @@ endfunction ()
3232

3333
###########################################################
3434

35+
find_package (Threads REQUIRED)
3536
find_package(Boost COMPONENTS system program_options)
3637

3738
set (EXTRA_BOOST_TARGETS)

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 2U
20+
#define CC_MQTTSN_GW_PATCH_VERSION 3U
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)