From fdeeec58fb905a1680a86914207dfe412e145d12 Mon Sep 17 00:00:00 2001 From: Siddharth Chandrasekaran Date: Sun, 28 Jun 2020 23:02:39 +0530 Subject: [PATCH] Release v1.1.0 --- CHANGELOG | 25 +++++++++++++++++++++++++ CMakeLists.txt | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 440b9240..2f52a55f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,28 @@ +v.1.1.0 +------- + +28 June 2020 + +This release bumps up the minor number as the contract has changed. It +introduces 2 major changes (first 2 in enhancements). The rest is all +re-organization and fixes. + +Enhancements: + - In PD Change app notification of incoming commands to polling to + simplify API + - Replace circular buffer command queue with linked list queue + - Add SC status and status query methods + - Add assert guards for exposed methods + - Cleanup osdp.h by splitting it into multiple files + - Split cmake rules into subdirectories + +Fixes: + - Add PD address to REPLY_COM in pd_build_reply + - Fix fd leak in read_pid + - Fix missing null char at atohstr() + - Fix memory under-alloc due to operator precedence issues + + v.1.0.0 ------- diff --git a/CMakeLists.txt b/CMakeLists.txt index d3166532..ea0b40f7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.0 FATAL_ERROR) -project(libosdp VERSION 1.0.0 LANGUAGES C) +project(libosdp VERSION 1.1.0 LANGUAGES C) set(PROJECT_AUTHOR "Siddharth Chandrasekran") set(PROJECT_YEAR 2019)