Bump version to 6.6.0

Change-Id: I957e8a980542f16d3a3b493b41406bbeb884c2dc
Reviewed-by: Jani Heikkinen <jani.heikkinen@qt.io>
This commit is contained in:
Jani Heikkinen 2022-12-14 07:29:56 +02:00
parent ca64365e3a
commit d238833a05
8 changed files with 10 additions and 8 deletions
.cmake.conf
src
corelib/serialization
plugins/sqldrivers
tests/auto/cmake
mockplugins
test_generating_cpp_exports
test_static_resources
util/cmake

View File

@ -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.0")
set(QT_REPO_MODULE_VERSION "6.6.0")
set(QT_REPO_MODULE_PRERELEASE_VERSION_SEGMENT "alpha1")
# Minimum requirement for building Qt

View File

@ -525,6 +525,7 @@ void QDataStream::setByteOrder(ByteOrder bo)
\value Qt_6_3 Same as Qt_6_0
\value Qt_6_4 Same as Qt_6_0
\value Qt_6_5 Same as Qt_6_0
\value Qt_6_6 Same as Qt_6_0
\omitvalue Qt_DefaultCompiledVersion
\sa setVersion(), version()

View File

@ -68,8 +68,9 @@ public:
Qt_6_3 = Qt_6_0,
Qt_6_4 = Qt_6_0,
Qt_6_5 = Qt_6_0,
Qt_DefaultCompiledVersion = Qt_6_5
#if QT_VERSION >= QT_VERSION_CHECK(6, 6, 0)
Qt_6_6 = Qt_6_0,
Qt_DefaultCompiledVersion = Qt_6_6
#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
#error Add the datastream version for this Qt version and update Qt_DefaultCompiledVersion
#endif
};

View File

@ -1 +1 @@
set(QT_REPO_MODULE_VERSION "6.5.0")
set(QT_REPO_MODULE_VERSION "6.6.0")

View File

@ -1,3 +1,3 @@
set(QT_REPO_MODULE_VERSION "6.5.0")
set(QT_REPO_MODULE_VERSION "6.6.0")
set(QT_USE_SYNCQT_CPP TRUE)

View File

@ -1 +1 @@
set(QT_REPO_MODULE_VERSION "6.5.0")
set(QT_REPO_MODULE_VERSION "6.6.0")

View File

@ -1 +1 @@
set(QT_REPO_MODULE_VERSION "6.5.0")
set(QT_REPO_MODULE_VERSION "6.6.0")

View File

@ -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.0")\n')
file.write('set(QT_REPO_MODULE_VERSION "6.6.0")\n')
except FileExistsError:
pass