From 7d890b7450ffa472403c2acda8629754b3a52b55 Mon Sep 17 00:00:00 2001 From: Michael Zillgith Date: Tue, 24 Jul 2018 07:13:29 +0200 Subject: [PATCH] - updated version to 1.3.0 --- CHANGELOG | 11 +++++++++++ CMakeLists.txt | 4 ++-- src/common/inc/libiec61850_platform_includes.h | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 24eae296..e64ef485 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,14 @@ +Changes to version 1.3.0 +------------------------ +- HAL: unified platform abstraction layer (to simply use together with lib60870) +- IEC 61850 server: fixed bug when calling write access handler (wrong pointer for ClientConnection object) +- updated IEC 61850-9-2 LE example to be more realistic +- added server side example for the substitution service +- MMS server: fixed wrong preprocessor defines that can cause problems in some configurations (unlimited number of client connections/ multi-threaded server) +- IEC 61850 client: added new function ControlObjectClient_getCtlValType to simplify control handling +- fixed bug in MmsValue_update + + Changes to version 1.2.2 ------------------------ diff --git a/CMakeLists.txt b/CMakeLists.txt index 07fbcdb7..f9f395ea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,8 +11,8 @@ project(libiec61850) ENABLE_TESTING() set(LIB_VERSION_MAJOR "1") -set(LIB_VERSION_MINOR "2") -set(LIB_VERSION_PATCH "2") +set(LIB_VERSION_MINOR "3") +set(LIB_VERSION_PATCH "0") set(LIB_VERSION "${LIB_VERSION_MAJOR}.${LIB_VERSION_MINOR}.${LIB_VERSION_PATCH}") set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/third_party/cmake/modules/") diff --git a/src/common/inc/libiec61850_platform_includes.h b/src/common/inc/libiec61850_platform_includes.h index d25ac59c..41e12b39 100644 --- a/src/common/inc/libiec61850_platform_includes.h +++ b/src/common/inc/libiec61850_platform_includes.h @@ -15,7 +15,7 @@ #include "platform_endian.h" -#define LIBIEC61850_VERSION "1.2.2" +#define LIBIEC61850_VERSION "1.3.0" #ifndef CONFIG_DEFAULT_MMS_VENDOR_NAME #define CONFIG_DEFAULT_MMS_VENDOR_NAME "libiec61850.com"