diff options
author | Jani Heikkinen <[email protected]> | 2023-05-02 09:11:39 +0300 |
---|---|---|
committer | Jani Heikkinen <[email protected]> | 2023-05-02 09:14:03 +0300 |
commit | 6630be28406a19e34cb3cc6043a7904316ade8a0 (patch) | |
tree | 97aff9e356f0860abf7679a5d1e41ddb2a7184b9 | |
parent | 9dcef6349d8aa3530b68c200aeeb25b1a90b4bcd (diff) |
Bump version to 6.5.2
Change-Id: I45f69ebf40a243b09d6256e1beb482d9d683b669
Reviewed-by: Jani Heikkinen <[email protected]>
-rw-r--r-- | .cmake.conf | 2 | ||||
-rw-r--r-- | src/plugins/sqldrivers/.cmake.conf | 2 | ||||
-rw-r--r-- | tests/auto/cmake/mockplugins/.cmake.conf | 2 | ||||
-rw-r--r-- | tests/auto/cmake/test_generating_cpp_exports/.cmake.conf | 2 | ||||
-rw-r--r-- | tests/auto/cmake/test_static_resources/.cmake.conf | 2 | ||||
-rwxr-xr-x | util/cmake/pro2cmake.py | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/.cmake.conf b/.cmake.conf index 0ea15e5d343..e91fbe25547 100644 --- a/.cmake.conf +++ b/.cmake.conf @@ -8,7 +8,7 @@ if (NOT DEFINED QT_SUPERBUILD OR DEFINED QT_REPO_MODULE_VERSION) list(APPEND QT_EXTRA_INTERNAL_TARGET_DEFINES "QT_NO_AS_CONST=1") endif() -set(QT_REPO_MODULE_VERSION "6.5.1") +set(QT_REPO_MODULE_VERSION "6.5.2") set(QT_REPO_MODULE_PRERELEASE_VERSION_SEGMENT "alpha1") set(QT_COPYRIGHT_YEAR "2023") diff --git a/src/plugins/sqldrivers/.cmake.conf b/src/plugins/sqldrivers/.cmake.conf index b929a60e565..c78647585d9 100644 --- a/src/plugins/sqldrivers/.cmake.conf +++ b/src/plugins/sqldrivers/.cmake.conf @@ -1 +1 @@ -set(QT_REPO_MODULE_VERSION "6.5.1") +set(QT_REPO_MODULE_VERSION "6.5.2") diff --git a/tests/auto/cmake/mockplugins/.cmake.conf b/tests/auto/cmake/mockplugins/.cmake.conf index b929a60e565..c78647585d9 100644 --- a/tests/auto/cmake/mockplugins/.cmake.conf +++ b/tests/auto/cmake/mockplugins/.cmake.conf @@ -1 +1 @@ -set(QT_REPO_MODULE_VERSION "6.5.1") +set(QT_REPO_MODULE_VERSION "6.5.2") diff --git a/tests/auto/cmake/test_generating_cpp_exports/.cmake.conf b/tests/auto/cmake/test_generating_cpp_exports/.cmake.conf index b929a60e565..c78647585d9 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.5.1") +set(QT_REPO_MODULE_VERSION "6.5.2") diff --git a/tests/auto/cmake/test_static_resources/.cmake.conf b/tests/auto/cmake/test_static_resources/.cmake.conf index b929a60e565..c78647585d9 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.5.1") +set(QT_REPO_MODULE_VERSION "6.5.2") diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py index c7576924dd3..eecfb5db007 100755 --- a/util/cmake/pro2cmake.py +++ b/util/cmake/pro2cmake.py @@ -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.5.1")\n') + file.write('set(QT_REPO_MODULE_VERSION "6.5.2")\n') except FileExistsError: pass |