Skip to content

Commit

Permalink
Bump supported engine version (#5676)
Browse files Browse the repository at this point in the history
Bumped supported engine version to the first nightly after last breaking change.

Also made it not being fooled by year change.
  • Loading branch information
farmaazon authored Feb 17, 2023
1 parent e81d1e3 commit 84eaf2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/gui/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion app/gui/config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}


Expand Down

0 comments on commit 84eaf2c

Please sign in to comment.