Skip to content

Commit

Permalink
Bump version to 6.4.0
Browse files Browse the repository at this point in the history
Change-Id: Ie0e2133d6c9125b901364c979c60b6efd585f026
Reviewed-by: Qt Submodule Update Bot <[email protected]>
  • Loading branch information
jaheikk committed Jan 31, 2022
1 parent 8dce9ee commit 994fd04
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .cmake.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(QT_REPO_MODULE_VERSION "6.3.0")
set(QT_REPO_MODULE_VERSION "6.4.0")
set(QT_REPO_MODULE_PRERELEASE_VERSION_SEGMENT "alpha1")

# Minimum requirement for building Qt
Expand Down
1 change: 1 addition & 0 deletions src/corelib/serialization/qdatastream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,7 @@ void QDataStream::setByteOrder(ByteOrder bo)
\value Qt_6_1 Same as Qt_6_0
\value Qt_6_2 Same as Qt_6_0
\value Qt_6_3 Same as Qt_6_0
\value Qt_6_4 Same as Qt_6_0
\omitvalue Qt_DefaultCompiledVersion
\sa setVersion(), version()
Expand Down
5 changes: 3 additions & 2 deletions src/corelib/serialization/qdatastream.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,9 @@ class Q_CORE_EXPORT QDataStream : public QIODeviceBase
Qt_6_1 = Qt_6_0,
Qt_6_2 = Qt_6_0,
Qt_6_3 = Qt_6_0,
Qt_DefaultCompiledVersion = Qt_6_3
#if QT_VERSION >= QT_VERSION_CHECK(6, 4, 0)
Qt_6_4 = Qt_6_0,
Qt_DefaultCompiledVersion = Qt_6_4
#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0)
#error Add the datastream version for this Qt version and update Qt_DefaultCompiledVersion
#endif
};
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.3.0")
set(QT_REPO_MODULE_VERSION "6.4.0")
2 changes: 1 addition & 1 deletion util/cmake/pro2cmake.py
Original file line number Diff line number Diff line change
Expand Up @@ -4425,7 +4425,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.3.0")\n')
file.write('set(QT_REPO_MODULE_VERSION "6.4.0")\n')
except FileExistsError:
pass

Expand Down

0 comments on commit 994fd04

Please sign in to comment.