From 8c334ade353e905712c46e7522fca512b0b33a59 Mon Sep 17 00:00:00 2001 From: Siddharth Chandrasekaran Date: Tue, 12 Nov 2024 02:25:56 +0100 Subject: [PATCH] Release v3.0.8 Signed-off-by: Siddharth Chandrasekaran --- CHANGELOG | 13 +++++++++++++ CMakeLists.txt | 2 +- library.json | 2 +- platformio/osdp_config.h | 2 +- python/setup.py | 2 +- 5 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 8c9a532..4438684 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,16 @@ +v3.0.8 +------ + +12 November 2024 + +A quick re-relase of v3.0.7 with 2 critical fixes needed for Rust and +PlatformIO. Refer to previous relase for actual change log. + +Fixes: + - utils: Bump submodule to get __BARE_METAL__ target fix + - scripts: Fix make-release.sh after PlatformIO changes + + v3.0.7 ------ diff --git a/CMakeLists.txt b/CMakeLists.txt index 91d4eea..128f064 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.14 FATAL_ERROR) cmake_policy(SET CMP0063 NEW) -project(libosdp VERSION 3.0.7) +project(libosdp VERSION 3.0.8) set(PROJECT_AUTHOR "Siddharth Chandrasekaran") set(PROJECT_AUTHOR_EMAIL "sidcha.dev@gmail.com") diff --git a/library.json b/library.json index 6b7baa3..a6a879b 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "LibOSDP", - "version": "3.0.7", + "version": "3.0.8", "description": "A cross-platform open source implementation of IEC 60839-11-5 Open Supervised Device Protocol (OSDP). The protocol is intended to improve interoperability among access control and security products. It supports Secure Channel (SC) for encrypted and authenticated communication between configured devices.", "authors": [{ "name": "Siddharth Chandrasekaran", diff --git a/platformio/osdp_config.h b/platformio/osdp_config.h index 0e0b419..1d9944b 100644 --- a/platformio/osdp_config.h +++ b/platformio/osdp_config.h @@ -11,7 +11,7 @@ * @brief The following macros are defined defined from the variable in cmake * files. All @XXX@ are replaced by the value of XXX as resolved by cmake. */ -#define PROJECT_VERSION "3.0.7" +#define PROJECT_VERSION "3.0.8" #define PROJECT_NAME "libosdp" #define GIT_BRANCH "platformio" #define GIT_REV "" diff --git a/python/setup.py b/python/setup.py index 63a8577..04527eb 100644 --- a/python/setup.py +++ b/python/setup.py @@ -11,7 +11,7 @@ import subprocess project_name = "libosdp" -project_version = "3.0.7" +project_version = "3.0.8" current_dir = os.path.dirname(os.path.realpath(__file__)) repo_root = os.path.realpath(os.path.join(current_dir, ".."))