From fdc94e7b1f52a02dfa2533f4859ed6ee7e787fa8 Mon Sep 17 00:00:00 2001 From: Siddharth Chandrasekaran Date: Sat, 23 Mar 2024 11:07:37 +0100 Subject: [PATCH] Release v3.0.5 Signed-off-by: Siddharth Chandrasekaran --- CHANGELOG | 29 +++++++++++++++++++++++++++++ CMakeLists.txt | 2 +- python/setup.py | 2 +- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 9204ce9..7057ab3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,32 @@ +v3.0.5 +------ + +23 March 2024 + +More vcpkg integration issue fixes. This relaese is also about more platform +suppport. + +Enhancements: + - ci: Enhance to run on different platforms; start doc builds + - cmake: Add options to disable shared/static builds + +Fixes: + - examples: cpp: Use std::this_thread::sleep_for instead of usleep + - doc: Fix doxygen build by copying and patching osdp.h + - api: Fix some more doxygen formatting issues + - doc: Remove deprecated doxygen config entries + - cmake: cpack: Fix package definitions + - crypto: openssl: Remove call to ERR_print_errors_fp() + - crypo: Add missing headers for openssl.c + - api: Add OSDP_EXPORT to exported methods in osdp.h + - python: example: Update README.md with socat link option + - ci: Fix cross-platform build and change cpack artifact path + - cmake: Fix MSVC OSDP_EXPORT macro issue + - cmake: Fix MSVC compiler flag issue + - CI: Add an on-demand cross platform build check runner + - cmake: Fix broken CI build due utils build + + v3.0.4 ------ diff --git a/CMakeLists.txt b/CMakeLists.txt index 65f38d8..d7dd1cf 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.4) +project(libosdp VERSION 3.0.5) set(PROJECT_AUTHOR "Siddharth Chandrasekaran") set(PROJECT_AUTHOR_EMAIL "sidcha.dev@gmail.com") diff --git a/python/setup.py b/python/setup.py index 4d0d60d..38b3c00 100644 --- a/python/setup.py +++ b/python/setup.py @@ -11,7 +11,7 @@ import subprocess project_name = "libosdp" -project_version = "3.0.4" +project_version = "3.0.5" current_dir = os.path.dirname(os.path.realpath(__file__)) repo_root = os.path.realpath(os.path.join(current_dir, ".."))