diff options
author | Alexander Wenzel <Alexander.AW.Wenzel@bmw.de> | 2014-06-11 10:31:11 +0200 |
---|---|---|
committer | Alexander Wenzel <Alexander.AW.Wenzel@bmw.de> | 2014-06-11 14:17:03 +0200 |
commit | ddd4bd9ee289211d6d9bc504137e90a0114a231c (patch) | |
tree | 1beb687de1f9109db5c3cf6c5ab34caf3e9d1ce0 | |
parent | b9e2024a1c51f35a99d2fdf43eef73c8033fb68f (diff) | |
download | dlt-daemon-ddd4bd9ee289211d6d9bc504137e90a0114a231c.tar.gz dlt-daemon-ddd4bd9ee289211d6d9bc504137e90a0114a231c.tar.bz2 dlt-daemon-ddd4bd9ee289211d6d9bc504137e90a0114a231c.zip |
Prepared alpha release v2.11.0
Signed-off-by: Alexander Wenzel <Alexander.AW.Wenzel@bmw.de>
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rwxr-xr-x | ReleaseNotes.txt | 17 |
2 files changed, 19 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e40f5ff..5cfca88 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,10 +23,10 @@ set( CMAKE_INSTALL_PREFIX "/usr" ) # Set version parameters
set( DLT_MAJOR_VERSION 2)
-set( DLT_MINOR_VERSION 10)
+set( DLT_MINOR_VERSION 11)
set( DLT_PATCH_LEVEL 0)
set( DLT_VERSION ${DLT_MAJOR_VERSION}.${DLT_MINOR_VERSION}.${DLT_PATCH_LEVEL})
-set( DLT_VERSION_STATE STABLE )
+set( DLT_VERSION_STATE ALPHA )
set( DLT_REVISION "")
execute_process(COMMAND git describe --tags WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index a19abe3..6314888 100755 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -9,8 +9,25 @@ Version Changes
-------
+2.11.0
+
+ * Enable dbus trace when adaptor starts up.
+ * Added configuration of dbus filter.
+ * Fixed segmented messages arguments to standard.
+ * First implementation of DLT DBus adapter.
+ * DLT_CSTRING implementation non verbose mode.
+ * Added new examples which can be manually build against DLt library.
+ * Send ECU Id if enabled and added library API to change.
+ * Send timestamp can be disabled by new API.
+ * Send session/process id by default and add configuration API.
+ * Send extended header in non verbose mode by default and add new API to change setting.
+ * Make daemon buffer size configurable
+
2.10.0
+ * Bug 184 - /tmp/dltpipes directory does not exist before dlt-daemon is started, logging disabled
+ * Updated authors information.
+ * Fixed missing variable declaration when systemd not enabled.
* 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.
|