diff --git a/CHANGELOG b/CHANGELOG index 6f054c57..13238e79 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,13 @@ +Changes to version 1.3.2 +------------------------ +- MMS client/server: added support for component alternate access for generic variable read requests +- MMS client: improved handling/stability when receiving malformed messages from the server +- IEC 61850 server: fixed problem with wrong purge buffer invocation when using dynamic data set in buffered report control block +- .NET API: add GetFileDirectoryEx function +- modelviewer: show full hierarchy including sub data objects +- .NET API: DataSet implements IDisposable interface, Report/DataSet GetValues methods return now clones of the original native values to prevent GC issues +- .NET API: MmsValue - added Clone method and implemented IDisposable interface + Changes to version 1.3.1 ------------------------ - GOOSE publisher: fixed problem in payload length calculation diff --git a/CMakeLists.txt b/CMakeLists.txt index c35e8f21..c98c7f2a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ ENABLE_TESTING() set(LIB_VERSION_MAJOR "1") set(LIB_VERSION_MINOR "3") -set(LIB_VERSION_PATCH "1") +set(LIB_VERSION_PATCH "2") 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 5ebc253a..aa24b992 100644 --- a/src/common/inc/libiec61850_platform_includes.h +++ b/src/common/inc/libiec61850_platform_includes.h @@ -17,7 +17,7 @@ #include "platform_endian.h" -#define LIBIEC61850_VERSION "1.3.1" +#define LIBIEC61850_VERSION "1.3.2" #ifndef CONFIG_DEFAULT_MMS_VENDOR_NAME #define CONFIG_DEFAULT_MMS_VENDOR_NAME "libiec61850.com"