Skip to content

Commit

Permalink
Release v7.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Feb 10, 2025
2 parents 3f8df8f + 7045ccc commit 0f6e089
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

env:
COMMS_TAG: v5.3
CC_TOOLS_QT_TAG: v6.0
CC_TOOLS_QT_TAG: v6.0.1

jobs:
build_gcc_old_ubuntu_20_04:
Expand Down
1 change: 1 addition & 0 deletions app/commsdsl2comms/src/CommsGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,7 @@ bool CommsGenerator::commsWriteExtraFilesInternal() const
strings::refreshFileSuffixStr(),
strings::refreshBodyFileSuffixStr(),
strings::nameFileSuffixStr(),
strings::nameBodyFileSuffixStr(),
strings::incFileSuffixStr(),
strings::appendFileSuffixStr(),
strings::constructFileSuffixStr(),
Expand Down
3 changes: 2 additions & 1 deletion app/commsdsl2tools_qt/src/ToolsQtCmake.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ bool ToolsQtCmake::toolsWriteInternal() const
" #^#EXTRA_SOURCES#$#\n"
" )\n\n"
" set(extra_link_opts)\n"
" if ((CMAKE_COMPILER_IS_GNUCC) OR (\"${CMAKE_CXX_COMPILER_ID}\" MATCHES \"Clang\"))\n"
" if ((NOT OPT_WITH_DEFAULT_SANITIZERS) AND\n"
" ((CMAKE_COMPILER_IS_GNUCC) OR (\"${CMAKE_CXX_COMPILER_ID}\" MATCHES \"Clang\")))\n"
" set(extra_link_opts \"-Wl,--no-undefined\")\n"
" endif ()\n\n"
" add_library (${name} MODULE ${src})\n"
Expand Down
7 changes: 6 additions & 1 deletion app/commsdsl2tools_qt/src/ToolsQtFrame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -850,6 +850,7 @@ std::string ToolsQtFrame::toolsFrameHeaderDefInternal() const
" virtual cc_tools_qt::ToolsMessagePtr createExtraInfoMessageImpl() override;\n"
" virtual cc_tools_qt::ToolsMessagesList createAllMessagesImpl() override;\n"
" virtual cc_tools_qt::ToolsMessagePtr createMessageImpl(const QString& idAsString, unsigned idx) override;\n"
" virtual DataSeq writeProtMsgImpl(const void* protInterface) override;\n"
"\n"
"private:\n"
" std::unique_ptr<#^#CLASS_NAME#$#Impl> m_pImpl;\n"
Expand Down Expand Up @@ -918,7 +919,11 @@ std::string ToolsQtFrame::toolsFrameSrcDefInternal(const commsdsl::gen::Interfac
"cc_tools_qt::ToolsMessagePtr #^#CLASS_NAME#$#::createMessageImpl(const QString& idAsString, unsigned idx)\n"
"{\n"
" return m_pImpl->createMessage(idAsString, idx);\n"
"}\n\n"
"}\n\n"
"#^#CLASS_NAME#$#::DataSeq #^#CLASS_NAME#$#::writeProtMsgImpl(const void* protInterface)\n"
"{\n"
" return m_pImpl->writeProtMsg(protInterface);\n"
"}\n\n"
;

auto& gen = ToolsQtGenerator::cast(generator());
Expand Down
2 changes: 1 addition & 1 deletion app/commsdsl2tools_qt/src/ToolsQtGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ namespace commsdsl2tools_qt
namespace
{

const std::string MinToolsQtVersion("6.0.0");
const std::string MinToolsQtVersion("6.0.1");

} // namespace

Expand Down
2 changes: 1 addition & 1 deletion lib/include/commsdsl/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#define COMMSDSL_MINOR_VERSION 0U

/// @brief Patch level of the library
#define COMMSDSL_PATCH_VERSION 2U
#define COMMSDSL_PATCH_VERSION 3U

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

0 comments on commit 0f6e089

Please sign in to comment.