Skip to content

Commit

Permalink
Release 2023-06-20
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Jun 19, 2023
2 parents 00ba8f2 + 421b3dd commit ec7b437
Show file tree
Hide file tree
Showing 1,257 changed files with 1,972 additions and 1,308 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ configuration:
- Release

environment:
COMMS_BRANCH: v5.2
COMMSDSL_BRANCH: v6.1
COMMS_BRANCH: v5.2.1
COMMSDSL_BRANCH: v6.2
matrix:
- CPP_STD: 11
- CPP_STD: 14
Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/actions_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Github Actions Build
on: [push]

env:
COMMS_BRANCH: v5.2
COMMSDSL_BRANCH: v6.1
COMMS_BRANCH: v5.2.1
COMMSDSL_BRANCH: v6.2

jobs:

Expand Down Expand Up @@ -172,8 +172,8 @@ jobs:
VERBOSE: 1


build_clang_ubuntu_18_04:
runs-on: ubuntu-18.04
build_clang_old_ubuntu_20_04:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand All @@ -187,6 +187,11 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Add repositories
run: |
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu/ bionic main'; \
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu/ bionic universe'
- name: Prepare Install
run: sudo apt-get update --fix-missing

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ option (FORCE_EXTRA_BOOST_LIBS "Force linking to extra boost libraries" OFF)
option (USE_SANITIZERS "Compile with sanitizers." OFF)

set (CMAKE_CXX_STANDARD 11 CACHE STRING "The C++ standard to use")
set (MIN_COMMSDSL_VERSION "6.1")
set (MIN_COMMSDSL_VERSION "6.2")

include(GNUInstallDirs)

Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/Interface.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of <b>"Interface"</b> interface class.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/InterfaceCommon.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains common template parameters independent functionality of
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/MsgId.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of message ids enumeration.
Expand Down
4 changes: 2 additions & 2 deletions howtos/howto1/include/howto1/Version.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains protocol version definition.
Expand All @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion()
} // namespace howto1

// Generated compile time check for minimal supported version of the COMMS library
static_assert(COMMS_MAKE_VERSION(5, 2, 0) <= comms::version(),
static_assert(COMMS_MAKE_VERSION(5, 2, 1) <= comms::version(),
"The version of COMMS library is too old");
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains dispatch to handling function(s) for client input input messages.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/dispatch/DispatchMessage.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains dispatch to handling function(s) for all input messages.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains dispatch to handling function(s) for client input input messages.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains message factory with dynamic memory allocation for all the messages.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains message factory with dynamic memory allocation for the client input messages.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains message factory with dynamic memory allocation for the server input messages.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/field/FieldBase.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of base class of all the fields.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/field/InterfaceFlags.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of <b>"InterfaceFlags"</b> field.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/field/InterfaceFlagsCommon.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains common template parameters independent functionality of
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/field/MsgId.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of <b>"MsgId"</b> field.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/field/MsgIdCommon.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains common template parameters independent functionality of
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/frame/Frame.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of <b>"Frame"</b> frame class.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/frame/FrameCommon.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains common template parameters independent functionality of
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/input/AllMessages.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of the AllMessages messages bundle.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/input/ClientInputMessages.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of the ClientInputMessages messages bundle.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/input/ServerInputMessages.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of the ServerInputMessages messages bundle.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/message/Msg1.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of <b>"Message 1"</b> message and its fields.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/message/Msg1Common.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains common template parameters independent functionality of
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/message/Msg2.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of <b>"Message 2"</b> message and its fields.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/message/Msg2Common.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains common template parameters independent functionality of
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of protocol all messages dynamic memory allocation message factory options.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of protocol bare metal default options.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of protocol client default options.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of protocol data view default options.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto1/include/howto1/options/DefaultOptions.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of protocol default options.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of protocol server default options.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/Interface.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of <b>"Interface"</b> interface class.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/InterfaceCommon.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains common template parameters independent functionality of
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/MsgId.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of message ids enumeration.
Expand Down
4 changes: 2 additions & 2 deletions howtos/howto10/include/howto10/Version.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains protocol version definition.
Expand All @@ -22,5 +22,5 @@ inline constexpr unsigned specVersion()
} // namespace howto10

// Generated compile time check for minimal supported version of the COMMS library
static_assert(COMMS_MAKE_VERSION(5, 2, 0) <= comms::version(),
static_assert(COMMS_MAKE_VERSION(5, 2, 1) <= comms::version(),
"The version of COMMS library is too old");
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains dispatch to handling function(s) for client input input messages.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/dispatch/DispatchMessage.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains dispatch to handling function(s) for all input messages.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains dispatch to handling function(s) for client input input messages.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains message factory with dynamic memory allocation for all the messages.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains message factory with dynamic memory allocation for the client input messages.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains message factory with dynamic memory allocation for the server input messages.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/field/FieldBase.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of base class of all the fields.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/field/Flags.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of <b>"Flags"</b> field.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/field/FlagsCommon.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains common template parameters independent functionality of
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/field/MsgId.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of <b>"MsgId"</b> field.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/field/MsgIdCommon.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains common template parameters independent functionality of
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/frame/Frame.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of <b>"Frame"</b> frame class.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/frame/FrameCommon.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains common template parameters independent functionality of
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/input/AllMessages.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of the AllMessages messages bundle.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/input/ClientInputMessages.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of the ClientInputMessages messages bundle.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/input/ServerInputMessages.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of the ServerInputMessages messages bundle.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/message/Msg1.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of <b>"Message 1"</b> message and its fields.
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/message/Msg1Common.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains common template parameters independent functionality of
Expand Down
2 changes: 1 addition & 1 deletion howtos/howto10/include/howto10/message/Msg2.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by commsdsl2comms v6.1.0
// Generated by commsdsl2comms v6.2.0

/// @file
/// @brief Contains definition of <b>"Message 2"</b> message and its fields.
Expand Down
Loading

0 comments on commit ec7b437

Please sign in to comment.