From 072e9d084b95df44b5bcb3ae34d5d10d462ecb2d Mon Sep 17 00:00:00 2001 From: Alexander Wenzel Date: Thu, 27 Mar 2014 08:56:27 +0100 Subject: Updated version number and release notes. Signed-off-by: Alexander Wenzel --- CMakeLists.txt | 8 ++++---- ReleaseNotes.txt | 41 ++++++++++++++++++++++++++++++++++++++--- 2 files changed, 42 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e841c7..79f303f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # Dlt - Diagnostic Log and Trace # @licence make begin@ # -# Copyright (C) 2011-2012, BMW AG - Alexander Wenzel +# Copyright (C) 2011-2014, BMW AG - Alexander Wenzel # # Contributions are licensed to the GENIVI Alliance under one or more # Contribution License Agreements. @@ -23,10 +23,10 @@ set( CMAKE_INSTALL_PREFIX "/usr" ) # Set version parameters set( DLT_MAJOR_VERSION 2) -set( DLT_MINOR_VERSION 9) -set( DLT_PATCH_LEVEL 2) +set( DLT_MINOR_VERSION 10) +set( DLT_PATCH_LEVEL 0) set( DLT_VERSION ${DLT_MAJOR_VERSION}.${DLT_MINOR_VERSION}.${DLT_PATCH_LEVEL}) -set( DLT_VERSION_STATE ALPHA ) +set( DLT_VERSION_STATE STABLE ) set( DLT_REVISION "") execute_process(COMMAND git describe --tags WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index 3a9d949..a19abe3 100755 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -4,13 +4,48 @@ Alexander Wenzel Version ------- -2.9.2 ALPHA +2.10.0 STABLE Changes ------- -2.9.2 - +2.10.0 + + * Fixed: all possible malloc, sprintf and strcpy problems + * Fixed: Creation of dltpipes directory is too late. + * Cygwin port: cygwin patch, signal handling patch and cppcheck and install lib dll to correct location on Windows. + * Fixed compiler warnings with 32Bit gcc compiler. + * Fixed: Fixed offline trace and new send functions issues + * Fixed: Bug 172 - DLT system crashes because of wrong journald adaptor implementation + * DLT Common API Wrapper. + * Removed dlt_free from example and test applications, already called from exit handler. + * Fixed missing dlt_receiver_remove in dlt_daemon_process_user_xxx functions. + * Use LIB_SUFFIX as lib installation path. + * Fixed serial port not working anymore. + * Added log output of created socket/port In init phase 2 - socket creation + * Defined return value for dlt_message_read(). + * Cleanup of send return values.Further cleanup of send restructure. + * Moved daemon client functions to new source file. + * Centralised send function to client.Introduced connection state to dlt daemon. + * Removed check of double registration of contexts in user library, already checked by daemon. + * When using DLT in console mode on a 64-bit machine, timestamps are corrupted due to an address of a 32-bit value being cast to a 64-bit pointer. + * Bug 3 - Cmake does not check for zlib for dlt-daemon compilation. + * Added new control message timezone. + * Fixed deadlock after wrong merge.. + * Fix potential buffer overflow in offline trace. + * Fix deadlock in dlt_user_log_reattach_to_daemon(void). + * Fixed possible crash when runtime configurations files are corrupted. + * Environement variables added to configure internal logging in library. + * Reduce Timeout between filetransfer packets. + * Close socket when send fails. + * Replace threads by timing fds for ecu version, timing packets and watchdog. + * Added conntection info and unregister context control messages. + * Configurable Timeout on send. + * Added further checks to dlt_buffer. + * atexit handler fix. + * Add threadnames to libdlt threads. + * Security fix on DLT pipes. + * Reduce usage of SEM_LOCK in application library and reset pointers. * Fix: Systemd Journal Adapter provides corrupted output. * Fix: Install Example service file only when example enabled -- cgit v1.2.1