From b9c05e5534b8e846a14e6e8efc30b229e250e58a Mon Sep 17 00:00:00 2001 From: antony-jr Date: Thu, 17 Nov 2022 21:18:06 +0530 Subject: [PATCH] [Release v2.2.2] QArchive v2.2.2 release. This release has fixes for very minor issues, also a lot of refactor. Adds support for meson build system. ABI break which does not affect the user by any means. * Initial Support for Meson Build System by @neheb * Refactor and optimization to source code by @neheb * Minor fix for CMake build by @ericriff CI/CD Changes: Better testing in Github Actions contributed by @Jihadist --- CMakeLists.txt | 2 +- meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a8a52e5..44b74fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ # ------------------------------- CMAKE_MINIMUM_REQUIRED( VERSION 3.17) -project(QArchive VERSION 2.2.1) +project(QArchive VERSION 2.2.2) set(CMAKE_CXX_STANDARD 11) set(CMAKE_INCLUDE_CURRENT_DIR ON) diff --git a/meson.build b/meson.build index 9a04021..403f0f2 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'QArchive', 'cpp', - version: '2.2.1', + version: '2.2.2', license: 'BSD-3-Clause', default_options: ['cpp_std=c++17'], meson_version: '>=0.49.0',