Compare commits

..
1 Commits
Author SHA1 Message Date
Stanislav Angelovič 30d9f1d462 chore: release v1.5.0 2024-02-26 08:29:35 +01:00
3 changed files with 11 additions and 3 deletions
+1 -2
View File
@@ -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
@@ -221,7 +221,6 @@ endif()
include(CMakePackageConfigHelpers)
install(EXPORT sdbus-c++-targets
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/sdbus-c++
NAMESPACE SDBusCpp::
+9
View File
@@ -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
+1 -1
View File
@@ -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)