Skip to content
Snippets Groups Projects
Commit 15cce024 authored by Stephane Poirier's avatar Stephane Poirier
Browse files

version 1.13.4

parent f601b4cc
No related branches found
No related merge requests found
......@@ -5,7 +5,7 @@ set(CMAKE_VERBOSE_MAKEFILE TRUE)
set(MAJOR_VERSION "1")
set(MINOR_VERSION "13")
set(PATCH_VERSION "3")
set(PATCH_VERSION "4")
set(VERSION "${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}")
if (NOT DEFINED CMAKE_INSTALL_PREFIX AND CMAKE_SIZEOF_VOID_P EQUAL 8)
......@@ -19,7 +19,7 @@ pkg_check_modules(TANGO tango REQUIRED)
pkg_check_modules(YAT yat REQUIRED)
if (UNIX)
add_definitions(-O2 -g -gstabs+ -std=c++0x -Wall -Wextra -DYAT4TANGO_PROJECT_VERSION=1.13.3 -DYAT4TANGO_PROJECT_NAME=YAT)
add_definitions(-O2 -g -gstabs+ -std=c++0x -Wall -Wextra -DYAT4TANGO_PROJECT_VERSION=1.13.4 -DYAT4TANGO_PROJECT_NAME=YAT4Tango)
set(CMAKE_SHARED_LINKER_FLAGS "-Wl,-z,defs")
endif()
......
YAT4Tango history file
1.13.4 (2021/12/01)
===================
Fixes
TangoLogAdapter
If _host parameter is null then use the API_LOGGER to prevent seg fault.
In this case, log messages will be redirected to the admin device associated
to the device server.
1.13.3 (2021/09/23)
===================
Additions
TangoLogAdapter
Objets inherited from TangoLogAdapter can now use those methods for message logging with formatting:
Objets inherited from TangoLogAdapter can now use those methods for message
logging with formatting:
debug(), info(), warn(), error(), fatal()
which internally use the yat::Format class.
usage :
debug("Message with two arguments: first: {}, second: {}.").arg(value_1).arg(value_2);
-> see <yat4tango/LogHelper.h>
-> see Format class in <yat/utils/String.h> for format specification
Changes
DeviceTask
This class now inherite from TangoLogAdapter instead of Tango::LogAdapter in order to benefit from the new log methods using yat::Format
This class now inherite from TangoLogAdapter instead of Tango::LogAdapter
in order to benefit from the new log methods using yat::Format
-> see <yat4tango/DeviceTask.h>
1.13.2 (2021/07/07)
......
......@@ -13,7 +13,7 @@
<artifactId>YAT4Tango-${aol}-${library}-${mode}</artifactId>
<version>1.13.4-SNAPSHOT</version>
<version>1.13.4</version>
<packaging>nar</packaging>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment