From a0b7e977b50bb4743a0a8a13eb0f6c5eb91c5a91 Mon Sep 17 00:00:00 2001 From: tsujan Date: Sun, 8 May 2022 11:10:26 +0430 Subject: [PATCH] Prerelease changes (#281) The release note will be as follows: For making it possible to have Qt5 and Qt6 installations of `libqtxdg` alongside each other in near future, two changes are made to this point release of `libqtxdg`: 1. `qtxdg-mat` has been separated from `libqtxdg` and put into `qtxdg-tools`. 2. The installation of config files has been made optional. --- CHANGELOG | 4 ++++ CMakeLists.txt | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index e1c8070..4e64ce8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +libqtxdg-3.9.1 / 2022-05-08 +=========================== + * Separated `qtxdg-mat` and made installation of config files optional (to prepare for Qt6). + libqtxdg-3.9.0 / 2022-04-15 =========================== * Improved email client command line handling in qtxdg-mat. diff --git a/CMakeLists.txt b/CMakeLists.txt index 0a9124d..ed38c3b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" "${CMAKE_CURRENT_SOURCE_DIR}/cmake" set(QTXDG_MAJOR_VERSION 3) set(QTXDG_MINOR_VERSION 9) -set(QTXDG_PATCH_VERSION 0) +set(QTXDG_PATCH_VERSION 1) set(QTXDG_VERSION_STRING ${QTXDG_MAJOR_VERSION}.${QTXDG_MINOR_VERSION}.${QTXDG_PATCH_VERSION}) set(LXQTBT_MINIMUM_VERSION "0.11.0")