From 84eaf2c63ee6ecc5163bf0af120d934ae1a58ea3 Mon Sep 17 00:00:00 2001 From: Adam Obuchowicz Date: Fri, 17 Feb 2023 13:46:16 +0100 Subject: [PATCH] Bump supported engine version (#5676) Bumped supported engine version to the first nightly after last breaking change. Also made it not being fooled by year change. --- app/gui/config.yaml | 4 ++-- app/gui/config/src/lib.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/gui/config.yaml b/app/gui/config.yaml index 72fbe98881ac..fd95eb9a9b9d 100644 --- a/app/gui/config.yaml +++ b/app/gui/config.yaml @@ -16,8 +16,8 @@ minimumSupportedVersion": "2.0.0-alpha.6" # The minimum engine version supported by the application. The projects opened with the older versions # will have the "Unsupported engine version" message displayed. -engineVersionSupported: "2022.1.1-nightly.2022-04-26" +engineVersionSupported: "2023.1.1-nightly.2023.2.8" # The minimum language edition supported by the application. It will be displayed as edition user # should put in their package.yaml file to have project compatible with the IDE. -languageEditionSupported: "2022.1.1-nightly.2022-04-26" +languageEditionSupported: "2023.1.1-nightly.2023.2.8" diff --git a/app/gui/config/src/lib.rs b/app/gui/config/src/lib.rs index 02146be5ffcb..74910f7494c0 100644 --- a/app/gui/config/src/lib.rs +++ b/app/gui/config/src/lib.rs @@ -28,7 +28,7 @@ include!(concat!(env!("OUT_DIR"), "/config.rs")); pub use generated::*; pub fn engine_version_requirement() -> semver::VersionReq { - semver::VersionReq::parse(&format!("^{engine_version_supported}")).unwrap() + semver::VersionReq::parse(&format!(">={engine_version_supported}")).unwrap() }