From 30d9f1d46258c2be4ce29b7f7f168ecdf6d4f328 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanislav=20Angelovi=C4=8D?= Date: Mon, 26 Feb 2024 08:29:35 +0100 Subject: [PATCH] chore: release v1.5.0 --- CMakeLists.txt | 2 +- ChangeLog | 9 +++++++++ tools/CMakeLists.txt | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 936fda41..a17cde40 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.13) -project(sdbus-c++ VERSION 1.4.0 LANGUAGES C CXX) +project(sdbus-c++ VERSION 1.5.0 LANGUAGES C CXX) include(GNUInstallDirs) # Installation directories for `install` command and pkgconfig file diff --git a/ChangeLog b/ChangeLog index 63a1166d..9e8c89a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -239,3 +239,12 @@ v1.4.0 - Add support for direct, peer-to-peer connections - Add option to create IConnection directly from an underlying sd_bus instance - Some additional fixes + +v1.5.0 +- Improve handling of exceptions from callback handlers +- Add support for async registration of matches +- Correctly add libsystemd dependency to pkgconfi +- Fix request name signal handling issue +- Add INSTALL_TESTS CMake option +- Minor UnixFd cleanups +- Additional little fixes and updates in code, build system, CI, and documentation diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 0fc7a465..2fc5d81e 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.5) -project(sdbus-c++-tools VERSION 1.4.0) +project(sdbus-c++-tools VERSION 1.5.0) include(GNUInstallDirs)