From 020d947ccbc1927f8ad6277532e82cd62d851744 Mon Sep 17 00:00:00 2001 From: Allen Winter Date: Mon, 9 Sep 2024 16:00:45 -0400 Subject: [PATCH] Prepare for 2.3.0 release --- .github/workflows/build.yml | 2 ++ CMakeLists.txt | 4 ++-- conan/conanfile.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ac88c027..8303c3d2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,10 +9,12 @@ on: branches: - master - kdreports-2.2 + - kdreports-2.3 pull_request: branches: - master - kdreports-2.2 + - kdreports-2.3 jobs: build: diff --git a/CMakeLists.txt b/CMakeLists.txt index 82cc7927..468bc5b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -70,8 +70,8 @@ project( ) set(${PROJECT_NAME}_VERSION_MAJOR 2) -set(${PROJECT_NAME}_VERSION_MINOR 2) -set(${PROJECT_NAME}_VERSION_PATCH 1) +set(${PROJECT_NAME}_VERSION_MINOR 3) +set(${PROJECT_NAME}_VERSION_PATCH 0) set(${PROJECT_NAME}_VERSION ${${PROJECT_NAME}_VERSION_MAJOR}.${${PROJECT_NAME}_VERSION_MINOR}.${${PROJECT_NAME}_VERSION_PATCH} ) diff --git a/conan/conanfile.py b/conan/conanfile.py index 8a187e9e..95239305 100644 --- a/conan/conanfile.py +++ b/conan/conanfile.py @@ -9,7 +9,7 @@ class KdReportsConan(ConanFile): name = "kdreports" - version = "2.2.1" + version = "2.3.0" license = ("https://raw.githubusercontent.com/KDAB/KDReports/master/LICENSES/MIT.txt") author = "Klaralvdalens Datakonsult AB (KDAB) info@kdab.com" url = "https://github.com/KDAB/KDReports.git"