Skip to content

Commit

Permalink
feat: 0.8.28
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Oct 9, 2024
1 parent 764a8ac commit 233c4ba
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions crates/svm-rs/src/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ mod tests {
use rand::seq::SliceRandom;

#[allow(unused)]
const LATEST: Version = Version::new(0, 8, 27);
const LATEST: Version = Version::new(0, 8, 28);

#[tokio::test]
#[serial_test::serial]
Expand Down Expand Up @@ -365,8 +365,11 @@ mod tests {
async fn can_install_latest_native_apple_silicon() {
let solc = install(&LATEST).await.unwrap();
let output = Command::new(solc).arg("--version").output().unwrap();
let version = String::from_utf8_lossy(&output.stdout);
assert!(version.contains("0.8.27"), "{}", version);
let version_output = String::from_utf8_lossy(&output.stdout);
assert!(
version_output.contains(LATEST.to_string()),
"{version_output}"
);
}

// ensures we can download the latest native solc for linux aarch64
Expand Down

0 comments on commit 233c4ba

Please sign in to comment.