diff --git a/CHANGELOG b/CHANGELOG index c5ccb12..fbfe40f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,29 @@ +v3.0.3 +------ + +13 March 2024 + +Minor release with a few fixes required for rust development to progress + +Enhancements: + - make: Add support for make install + - api: cp: Add method to flush command queue + - python: osdp_sys: Add some error context for public API + - doc: Add libosdp/compatibility to top level index.rst + +Fixes: + - doc: Fixup doc in multiple places + - api: More doxygen fixups + - cmake: Fix packet trace and data trace linkage + - api: Fix regression caused by doxygen formatting commit + - api: Fix doxygen comments style all over osdp.h + - Fix minor typos in the Wireshark payload dissector + - doc: More README updates + - doc: Update README; fix compatibility table + - libosdp: Fix issue with SC retry timer + - utils: Pull in fix for time usage on Windows + + v3.0.2 ------ diff --git a/CMakeLists.txt b/CMakeLists.txt index ad47371..535ca14 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.2) +project(libosdp VERSION 3.0.3) set(PROJECT_AUTHOR "Siddharth Chandrasekaran") set(PROJECT_AUTHOR_EMAIL "sidcha.dev@gmail.com") diff --git a/python/setup.py b/python/setup.py index b9f05af..0ec1b44 100644 --- a/python/setup.py +++ b/python/setup.py @@ -11,7 +11,7 @@ import subprocess project_name = "libosdp" -project_version = "3.0.2" +project_version = "3.0.3" current_dir = os.path.dirname(os.path.realpath(__file__)) repo_root = os.path.realpath(os.path.join(current_dir, ".."))