From e169ad62e44b29151819d7fdf78e8c571775a215 Mon Sep 17 00:00:00 2001 From: Tsu Jan Date: Wed, 30 Oct 2024 10:43:13 +0330 Subject: [PATCH 1/2] Pre-release changes --- CHANGELOG | 15 +++++++++++++++ CMakeLists.txt | 4 ++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 7aba8bd..4af0bf9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,18 @@ +libdbusmenu-lxqt-0.2.0 / 2024-11-05 +=================================== + * Stop checking for `QIcon::name()` existence. + * Fix AUTOMOC related warnings. + * Don't redefine already defined macros. + * Remove Bazaar stuff. + * Use CMake to set the CXX standard in use. + * Use CMake to set the symbol visibility. + * Remove duplicated duplicated compiler flags. + * Move compiler flag check/set. + * Update Qt6 include directories use. + * Update self include directories. + * Removes dist and distcheck targets. + * Renamed README;compiling instructions. + libdbusmenu-lxqt-0.1.0 / 2024-04-17 =================================== * Forked from libdbusmenu-qt and ported to Qt6. diff --git a/CMakeLists.txt b/CMakeLists.txt index 13ac329..63c9f0d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ option(WITH_DOC "Build documentation (requires Doxygen)" OFF) # Versions ## Package version set(dbusmenu_lxqt_VERSION_MAJOR 0) -set(dbusmenu_lxqt_VERSION_MINOR 1) +set(dbusmenu_lxqt_VERSION_MINOR 2) set(dbusmenu_lxqt_VERSION_PATCH 0) set(dbusmenu_lxqt_VERSION ${dbusmenu_lxqt_VERSION_MAJOR}.${dbusmenu_lxqt_VERSION_MINOR}.${dbusmenu_lxqt_VERSION_PATCH}) @@ -17,7 +17,7 @@ set(dbusmenu_lxqt_VERSION ${dbusmenu_lxqt_VERSION_MAJOR}.${dbusmenu_lxqt_VERSION set(dbusmenu_lxqt_lib_SOVERSION 0) ### Bump this one when the API is extended in a binary-compatible way -set(dbusmenu_lxqt_lib_API_VERSION 1) +set(dbusmenu_lxqt_lib_API_VERSION 2) ### Bump this one when changes do not extend the API set(dbusmenu_lxqt_lib_PATCH_VERSION 0) From 0df78b0677645d369fd5364f24350a0ce540d55f Mon Sep 17 00:00:00 2001 From: Tsu Jan Date: Wed, 30 Oct 2024 11:08:05 +0330 Subject: [PATCH 2/2] Fixed a typo. --- CHANGELOG | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 4af0bf9..3058fa1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -6,7 +6,7 @@ libdbusmenu-lxqt-0.2.0 / 2024-11-05 * Remove Bazaar stuff. * Use CMake to set the CXX standard in use. * Use CMake to set the symbol visibility. - * Remove duplicated duplicated compiler flags. + * Remove duplicated compiler flags. * Move compiler flag check/set. * Update Qt6 include directories use. * Update self include directories.