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, ".."))