Skip to content

Commit

Permalink
Update minimal interpreter version to 0.61.0
Browse files Browse the repository at this point in the history
It is not compatible with older data because of tetraplet format change.
  • Loading branch information
monoid committed Feb 22, 2024
1 parent 63d7ff1 commit 066ce27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion air/src/preparation_step/interpreter_versions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.58.0").expect("valid minimal supported version specified"));
Lazy::new(|| semver::Version::from_str("0.61.0").expect("valid minimal supported version specified"));

/// Current interpreter version, more info in
/// [./docs/update-guide.md]
Expand Down

0 comments on commit 066ce27

Please sign in to comment.