Bump version to 6.9.1

Change-Id: I13b41c9f75834bf8984a2414aa3e2c99bf802ff3
Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
This commit is contained in:
Jani Heikkinen 2025-04-03 08:10:50 +01:00
parent 95f659aeda
commit aa2e61f325
7 changed files with 7 additions and 7 deletions

View File

@ -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") set(QT_EXTRA_INTERNAL_TARGET_DEFINES "QT_LEAN_HEADERS=1")
endif() 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_REPO_MODULE_PRERELEASE_VERSION_SEGMENT "alpha1")
set(QT_COPYRIGHT "Copyright (C) The Qt Company Ltd. and other contributors.") set(QT_COPYRIGHT "Copyright (C) The Qt Company Ltd. and other contributors.")

View File

@ -1 +1 @@
set(QT_REPO_MODULE_VERSION "6.9.0") set(QT_REPO_MODULE_VERSION "6.9.1")

View File

@ -1 +1 @@
set(QT_REPO_MODULE_VERSION "6.9.0") set(QT_REPO_MODULE_VERSION "6.9.1")

View File

@ -1 +1 @@
set(QT_REPO_MODULE_VERSION "6.9.0") set(QT_REPO_MODULE_VERSION "6.9.1")

View File

@ -1 +1 @@
set(QT_REPO_MODULE_VERSION "6.9.0") set(QT_REPO_MODULE_VERSION "6.9.1")

View File

@ -3,7 +3,7 @@
** Copyright (C) 2024 Intel Corporation. ** Copyright (C) 2024 Intel Corporation.
** SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only ** 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! ** WARNING! All changes made in this file will be lost!
*****************************************************************************/ *****************************************************************************/

View File

@ -4658,7 +4658,7 @@ def create_top_level_cmake_conf():
conf_file_name = ".cmake.conf" conf_file_name = ".cmake.conf"
try: try:
with open(conf_file_name, "x") as file: 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: except FileExistsError:
pass pass