Skip to content

Commit

Permalink
Release v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Jan 5, 2025
2 parents 6990c08 + 5897d61 commit 8a26693
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
11 changes: 8 additions & 3 deletions .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 Expand Up @@ -285,7 +290,7 @@ jobs:
strategy:
fail-fast: false
matrix:
type: [Debug, Release, MinSizeRel]
type: [Debug, Release]
arch: [Win32, x64]
cpp: [17]

Expand Down Expand Up @@ -344,7 +349,7 @@ jobs:
strategy:
fail-fast: false
matrix:
type: [Debug, Release, MinSizeRel]
type: [Debug, Release]
arch: [Win32, x64]
cpp: [17, 20]

Expand Down
2 changes: 1 addition & 1 deletion client/lib/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if ((NOT CC_MQTT5_CLIENT_DEFAULT_LIB) OR
if ((NOT CC_MQTT5_CLIENT_DEFAULT_LIB) AND
(CC_MQTT5_CUSTOM_CLIENT_CONFIG_FILES STREQUAL ""))
return()
endif ()
Expand Down
2 changes: 1 addition & 1 deletion client/lib/include/cc_mqtt5_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_MQTT5_CLIENT_PATCH_VERSION 1U
#define CC_MQTT5_CLIENT_PATCH_VERSION 2U

/// @brief Macro to create numeric version as single unsigned number
/// @ingroup global
Expand Down
14 changes: 7 additions & 7 deletions client/lib/templ/client.cpp.templ
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@

#include "comms/util/ScopeGuard.h"

struct CC_Mqtt5Client {};
struct CC_Mqtt5Connect {};
struct CC_Mqtt5Disconnect {};
struct CC_Mqtt5Subscribe {};
struct CC_Mqtt5Unsubscribe {};
struct CC_Mqtt5Publish {};
struct CC_Mqtt5Reauth {};
struct alignas(alignof(cc_mqtt5_client::ClientImpl)) CC_Mqtt5Client {};
struct alignas(alignof(cc_mqtt5_client::op::ConnectOp)) CC_Mqtt5Connect {};
struct alignas(alignof(cc_mqtt5_client::op::DisconnectOp)) CC_Mqtt5Disconnect {};
struct alignas(alignof(cc_mqtt5_client::op::SubscribeOp)) CC_Mqtt5Subscribe {};
struct alignas(alignof(cc_mqtt5_client::op::UnsubscribeOp)) CC_Mqtt5Unsubscribe {};
struct alignas(alignof(cc_mqtt5_client::op::SendOp)) CC_Mqtt5Publish {};
struct alignas(alignof(cc_mqtt5_client::op::ReauthOp)) CC_Mqtt5Reauth {};

namespace
{
Expand Down

0 comments on commit 8a26693

Please sign in to comment.