Skip to content

Commit

Permalink
Bump version to 6.8.1
Browse files Browse the repository at this point in the history
Change-Id: Ic8432157af13404391a5314ac2f44ac09abcfca5
Reviewed-by: Akseli Salovaara <[email protected]>
  • Loading branch information
jaheikk committed Sep 19, 2024
1 parent e999873 commit cbdc0d3
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .cmake.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.0")
set(QT_REPO_MODULE_VERSION "6.8.1")
set(QT_REPO_MODULE_PRERELEASE_VERSION_SEGMENT "alpha1")

set(QT_COPYRIGHT "Copyright (C) The Qt Company Ltd. and other contributors.")
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/sqldrivers/.cmake.conf
Original file line number Diff line number Diff line change
@@ -1 +1 @@
set(QT_REPO_MODULE_VERSION "6.8.0")
set(QT_REPO_MODULE_VERSION "6.8.1")
2 changes: 1 addition & 1 deletion tests/auto/cmake/mockplugins/.cmake.conf
Original file line number Diff line number Diff line change
@@ -1 +1 @@
set(QT_REPO_MODULE_VERSION "6.8.0")
set(QT_REPO_MODULE_VERSION "6.8.1")
2 changes: 1 addition & 1 deletion tests/auto/cmake/test_generating_cpp_exports/.cmake.conf
Original file line number Diff line number Diff line change
@@ -1 +1 @@
set(QT_REPO_MODULE_VERSION "6.8.0")
set(QT_REPO_MODULE_VERSION "6.8.1")
2 changes: 1 addition & 1 deletion tests/auto/cmake/test_static_resources/.cmake.conf
Original file line number Diff line number Diff line change
@@ -1 +1 @@
set(QT_REPO_MODULE_VERSION "6.8.0")
set(QT_REPO_MODULE_VERSION "6.8.1")
2 changes: 1 addition & 1 deletion tests/auto/tools/rcc/data/legal/rcc_legal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.0
** Created by: The Resource Compiler for Qt version 6.8.1
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
Expand Down
2 changes: 1 addition & 1 deletion util/cmake/pro2cmake.py
Original file line number Diff line number Diff line change
Expand Up @@ -4666,7 +4666,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.8.0")\n')
file.write('set(QT_REPO_MODULE_VERSION "6.8.1")\n')
except FileExistsError:
pass

Expand Down

0 comments on commit cbdc0d3

Please sign in to comment.