diff options
author | Eike Ziller <eike.ziller@qt.io> | 2023-03-06 11:12:34 +0100 |
---|---|---|
committer | Eike Ziller <eike.ziller@qt.io> | 2023-03-06 13:14:30 +0000 |
commit | b7a42f58023efc3f602e36179409a452c6ac9401 (patch) | |
tree | 9649455a006c792821ccfb216f9b203b689ddb4e | |
parent | dedc3e81fa61ae159bd4c569a69e2de4b5a0ec2d (diff) | |
download | qt-creator-b7a42f58023efc3f602e36179409a452c6ac9401.tar.gz |
Bump version to 10.0.0-rc1
Change-Id: I3aee0fbdd05a3ebc438c4ff62a43dafb6856e7a7
Reviewed-by: David Schulz <david.schulz@qt.io>
-rw-r--r-- | cmake/QtCreatorIDEBranding.cmake | 6 | ||||
-rw-r--r-- | qbs/modules/qtc/qtc.qbs | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/cmake/QtCreatorIDEBranding.cmake b/cmake/QtCreatorIDEBranding.cmake index 2a2e02fd17..0b9447a85d 100644 --- a/cmake/QtCreatorIDEBranding.cmake +++ b/cmake/QtCreatorIDEBranding.cmake @@ -1,6 +1,6 @@ -set(IDE_VERSION "9.0.83") # The IDE version. -set(IDE_VERSION_COMPAT "9.0.83") # The IDE Compatibility version. -set(IDE_VERSION_DISPLAY "10.0.0-beta2") # The IDE display version. +set(IDE_VERSION "9.0.84") # The IDE version. +set(IDE_VERSION_COMPAT "9.0.84") # The IDE Compatibility version. +set(IDE_VERSION_DISPLAY "10.0.0-rc1") # The IDE display version. set(IDE_COPYRIGHT_YEAR "2023") # The IDE current copyright year. set(IDE_SETTINGSVARIANT "QtProject") # The IDE settings variation. diff --git a/qbs/modules/qtc/qtc.qbs b/qbs/modules/qtc/qtc.qbs index b4688986a3..14529677fe 100644 --- a/qbs/modules/qtc/qtc.qbs +++ b/qbs/modules/qtc/qtc.qbs @@ -6,16 +6,16 @@ import qbs.Utilities Module { Depends { name: "cpp"; required: false } - property string qtcreator_display_version: '10.0.0-beta2' + property string qtcreator_display_version: '10.0.0-rc1' property string ide_version_major: '9' property string ide_version_minor: '0' - property string ide_version_release: '83' + property string ide_version_release: '84' property string qtcreator_version: ide_version_major + '.' + ide_version_minor + '.' + ide_version_release property string ide_compat_version_major: '9' property string ide_compat_version_minor: '0' - property string ide_compat_version_release: '83' + property string ide_compat_version_release: '84' property string qtcreator_compat_version: ide_compat_version_major + '.' + ide_compat_version_minor + '.' + ide_compat_version_release |