feat(execution-engine)!: update minimal interpreter version (#649)

update minimal interpreter version
This commit is contained in:
Mike Voronov 2023-08-03 21:18:00 +03:00 committed by GitHub
parent eca52b7191
commit 0655daa89d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ use std::str::FromStr;
/// Minimal supported interpreter version, should be updated according to
/// [./docs/update-guide.md]
static MINIMAL_INTERPRETER_VERSION: Lazy<semver::Version> =
Lazy::new(|| semver::Version::from_str("0.40.0").expect("valid minimal supported version specified"));
Lazy::new(|| semver::Version::from_str("0.43.0").expect("valid minimal supported version specified"));
/// Current interpreter version, more info in
/// [./docs/update-guide.md]