Skip to content

Commit

Permalink
update default z3 version to 4.13.0
Browse files Browse the repository at this point in the history
Co-authored-by: Andrea Lattuada <[email protected]>
  • Loading branch information
Catoverflow and utaal committed Feb 19, 2025
1 parent ca4545b commit c65e5c7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/tools/get-z3.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$z3_version = "4.12.5"
$z3_version = "4.13.0"
$filename = "z3-$z3_version-x64-win"

$download_url = "https://github.com/Z3Prover/z3/releases/download/z3-$z3_version/$filename.zip"
Expand Down
3 changes: 2 additions & 1 deletion source/tools/get-z3.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#! /bin/bash -eu

z3_version="4.12.5"
# Should keep track of verus/tools/common/consts.rs
z3_version="4.13.0"

if [ `uname` == "Darwin" ]; then
if [[ $(uname -m) == 'arm64' ]]; then
Expand Down
2 changes: 1 addition & 1 deletion tools/common/consts.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub const EXPECTED_Z3_VERSION: &str = "4.12.5";
pub const EXPECTED_Z3_VERSION: &str = "4.13.0";
pub const EXPECTED_CVC5_VERSION: &str = "1.1.2";
#[allow(dead_code)] // actually used in `rust_verify/util.rs`, but missed by the dead code checker, possibly due to the use of `#[path(...)]` for this file
pub const VERUS_GITHUB_BUG_REPORT_URL: &str =
Expand Down

0 comments on commit c65e5c7

Please sign in to comment.