From acbab68ad20a17e646805e08598cbe7db398a224 Mon Sep 17 00:00:00 2001 From: Tsu Jan Date: Wed, 16 Aug 2023 10:23:34 +0330 Subject: [PATCH] Pre-release changes --- CHANGELOG | 6 ++++++ CMakeLists.txt | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 551e06a..887337e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +obconf-qt-0.16.3 / 2023-08-16 +============================= + * Added missing copyright info. + * Bumped the minimum required version of cmake to 3.5.0 (to silence a compilation warning). + * Translation updates. + obconf-qt-0.16.2 / 2022-03-11 ============================= * Fixed the option for centering window on opening. diff --git a/CMakeLists.txt b/CMakeLists.txt index 95c06cb..e8a2cdb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR) +cmake_minimum_required(VERSION 3.5.0 FATAL_ERROR) # CMP0000: Call the cmake_minimum_required() command at the beginning of the top-level # CMakeLists.txt file even before calling the project() command. # The cmake_minimum_required(VERSION) command implicitly invokes the cmake_policy(VERSION) @@ -18,7 +18,7 @@ set(QT_MINIMUM_VERSION "5.12.0") set(OBCONFQT_MAJOR_VERSION 0) set(OBCONFQT_MINOR_VERSION 16) -set(OBCONFQT_PATCH_VERSION 2) +set(OBCONFQT_PATCH_VERSION 3) set(OBCONFQT_VERSION ${OBCONFQT_MAJOR_VERSION}.${OBCONFQT_MINOR_VERSION}.${OBCONFQT_PATCH_VERSION}) add_definitions("-DOBCONFQT_VERSION=\"${OBCONFQT_VERSION}\"")