From 7450515d0bc632b871d0d3f549ddb24783dd008f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanislav=20Angelovi=C4=8D?= Date: Wed, 24 Apr 2024 20:04:34 +0200 Subject: [PATCH] chore: release version v1.6.0 --- CMakeLists.txt | 2 +- ChangeLog | 6 ++++++ tools/CMakeLists.txt | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a17cde40..b4cbf150 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.13) -project(sdbus-c++ VERSION 1.5.0 LANGUAGES C CXX) +project(sdbus-c++ VERSION 1.6.0 LANGUAGES C CXX) include(GNUInstallDirs) # Installation directories for `install` command and pkgconfig file diff --git a/ChangeLog b/ChangeLog index 9e8c89a1..b6c8de2a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -248,3 +248,9 @@ v1.5.0 - Add INSTALL_TESTS CMake option - Minor UnixFd cleanups - Additional little fixes and updates in code, build system, CI, and documentation + +v1.6.0 +- Add support for enums in D-Bus serialization and signatures +- Add support for std::variant as an alternative C++ type for D-Bus Variant +- Add support for implicit conversions between std::variant and sdbus::Variant +- Fix missing includes diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 2fc5d81e..f63d18a6 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.5.0) +project(sdbus-c++-tools VERSION 1.6.0) include(GNUInstallDirs)