From aa2e61f32556a560078ba8c0ccaf41b81e678e7c Mon Sep 17 00:00:00 2001 From: Jani Heikkinen Date: Thu, 3 Apr 2025 08:10:50 +0100 Subject: [PATCH] Bump version to 6.9.1 Change-Id: I13b41c9f75834bf8984a2414aa3e2c99bf802ff3 Reviewed-by: Qt Submodule Update Bot --- .cmake.conf | 2 +- src/plugins/sqldrivers/.cmake.conf | 2 +- tests/auto/cmake/mockplugins/.cmake.conf | 2 +- tests/auto/cmake/test_generating_cpp_exports/.cmake.conf | 2 +- tests/auto/cmake/test_static_resources/.cmake.conf | 2 +- tests/auto/tools/rcc/data/legal/rcc_legal.cpp | 2 +- util/cmake/pro2cmake.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.cmake.conf b/.cmake.conf index c8a64e4f56f..9fb77ceb880 100644 --- a/.cmake.conf +++ b/.cmake.conf @@ -7,7 +7,7 @@ if (NOT DEFINED QT_SUPERBUILD OR DEFINED QT_REPO_MODULE_VERSION) set(QT_EXTRA_INTERNAL_TARGET_DEFINES "QT_LEAN_HEADERS=1") endif() -set(QT_REPO_MODULE_VERSION "6.9.0") +set(QT_REPO_MODULE_VERSION "6.9.1") set(QT_REPO_MODULE_PRERELEASE_VERSION_SEGMENT "alpha1") set(QT_COPYRIGHT "Copyright (C) The Qt Company Ltd. and other contributors.") diff --git a/src/plugins/sqldrivers/.cmake.conf b/src/plugins/sqldrivers/.cmake.conf index 6d83b084f78..856fb356352 100644 --- a/src/plugins/sqldrivers/.cmake.conf +++ b/src/plugins/sqldrivers/.cmake.conf @@ -1 +1 @@ -set(QT_REPO_MODULE_VERSION "6.9.0") +set(QT_REPO_MODULE_VERSION "6.9.1") diff --git a/tests/auto/cmake/mockplugins/.cmake.conf b/tests/auto/cmake/mockplugins/.cmake.conf index 6d83b084f78..856fb356352 100644 --- a/tests/auto/cmake/mockplugins/.cmake.conf +++ b/tests/auto/cmake/mockplugins/.cmake.conf @@ -1 +1 @@ -set(QT_REPO_MODULE_VERSION "6.9.0") +set(QT_REPO_MODULE_VERSION "6.9.1") diff --git a/tests/auto/cmake/test_generating_cpp_exports/.cmake.conf b/tests/auto/cmake/test_generating_cpp_exports/.cmake.conf index 6d83b084f78..856fb356352 100644 --- a/tests/auto/cmake/test_generating_cpp_exports/.cmake.conf +++ b/tests/auto/cmake/test_generating_cpp_exports/.cmake.conf @@ -1 +1 @@ -set(QT_REPO_MODULE_VERSION "6.9.0") +set(QT_REPO_MODULE_VERSION "6.9.1") diff --git a/tests/auto/cmake/test_static_resources/.cmake.conf b/tests/auto/cmake/test_static_resources/.cmake.conf index 6d83b084f78..856fb356352 100644 --- a/tests/auto/cmake/test_static_resources/.cmake.conf +++ b/tests/auto/cmake/test_static_resources/.cmake.conf @@ -1 +1 @@ -set(QT_REPO_MODULE_VERSION "6.9.0") +set(QT_REPO_MODULE_VERSION "6.9.1") diff --git a/tests/auto/tools/rcc/data/legal/rcc_legal.cpp b/tests/auto/tools/rcc/data/legal/rcc_legal.cpp index deec3380aa9..3dbaf8bc165 100644 --- a/tests/auto/tools/rcc/data/legal/rcc_legal.cpp +++ b/tests/auto/tools/rcc/data/legal/rcc_legal.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2024 Intel Corporation. ** SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only ** -** Created by: The Resource Compiler for Qt version 6.9.0 +** Created by: The Resource Compiler for Qt version 6.9.1 ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py index 39ed8fa634d..84016aeb5fc 100755 --- a/util/cmake/pro2cmake.py +++ b/util/cmake/pro2cmake.py @@ -4658,7 +4658,7 @@ def create_top_level_cmake_conf(): conf_file_name = ".cmake.conf" try: with open(conf_file_name, "x") as file: - file.write('set(QT_REPO_MODULE_VERSION "6.9.0")\n') + file.write('set(QT_REPO_MODULE_VERSION "6.9.1")\n') except FileExistsError: pass