From ca56683968bda29f9f7937902ca9d1887a9e00d2 Mon Sep 17 00:00:00 2001 From: Siddharth Chandrasekaran Date: Tue, 19 Mar 2024 22:59:12 +0100 Subject: [PATCH] Release v3.0.4 Signed-off-by: Siddharth Chandrasekaran --- CHANGELOG | 14 ++++++++++++++ CMakeLists.txt | 2 +- python/setup.py | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index fbfe40f..9204ce9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +v3.0.4 +------ + +19 March 2024 + +A release to patch cmkae issues found during vcpkg integration. This version +will be pegged to the first vcpkg release. + +Fixes: + - cmake: Fix issues found when integrating with vcpkg + - Fix input_check() macros for windows builds + - api: Fixup comamnd queue flush function name + + v3.0.3 ------ diff --git a/CMakeLists.txt b/CMakeLists.txt index c1de21e..29ad8b6 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.3) +project(libosdp VERSION 3.0.4) set(PROJECT_AUTHOR "Siddharth Chandrasekaran") set(PROJECT_AUTHOR_EMAIL "sidcha.dev@gmail.com") diff --git a/python/setup.py b/python/setup.py index 0ec1b44..4d0d60d 100644 --- a/python/setup.py +++ b/python/setup.py @@ -11,7 +11,7 @@ import subprocess project_name = "libosdp" -project_version = "3.0.3" +project_version = "3.0.4" current_dir = os.path.dirname(os.path.realpath(__file__)) repo_root = os.path.realpath(os.path.join(current_dir, ".."))