diff --git a/cmake/QtCreatorIDEBranding.cmake b/cmake/QtCreatorIDEBranding.cmake index c8aae39677f..2a2e02fd172 100644 --- a/cmake/QtCreatorIDEBranding.cmake +++ b/cmake/QtCreatorIDEBranding.cmake @@ -1,7 +1,7 @@ -set(IDE_VERSION "9.0.82") # The IDE version. -set(IDE_VERSION_COMPAT "9.0.82") # The IDE Compatibility version. -set(IDE_VERSION_DISPLAY "10.0.0-beta1") # The IDE display version. -set(IDE_COPYRIGHT_YEAR "2022") # The IDE current copyright year. +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_COPYRIGHT_YEAR "2023") # The IDE current copyright year. set(IDE_SETTINGSVARIANT "QtProject") # The IDE settings variation. set(IDE_DISPLAY_NAME "Qt Creator") # The IDE display name. diff --git a/qbs/modules/qtc/qtc.qbs b/qbs/modules/qtc/qtc.qbs index 834bee02c4a..b4688986a35 100644 --- a/qbs/modules/qtc/qtc.qbs +++ b/qbs/modules/qtc/qtc.qbs @@ -6,20 +6,20 @@ import qbs.Utilities Module { Depends { name: "cpp"; required: false } - property string qtcreator_display_version: '10.0.0-beta1' + property string qtcreator_display_version: '10.0.0-beta2' property string ide_version_major: '9' property string ide_version_minor: '0' - property string ide_version_release: '82' + property string ide_version_release: '83' 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: '82' + property string ide_compat_version_release: '83' property string qtcreator_compat_version: ide_compat_version_major + '.' + ide_compat_version_minor + '.' + ide_compat_version_release - property string qtcreator_copyright_year: '2022' + property string qtcreator_copyright_year: '2023' property string qtcreator_copyright_string: "(C) " + qtcreator_copyright_year + " The Qt Company Ltd" property string ide_display_name: 'Qt Creator'