Skip to content

Commit

Permalink
Bump to 0.4.0 (#1280)
Browse files Browse the repository at this point in the history
* Update cbmc-viewer version to sync with CI
  • Loading branch information
tedinski authored Jun 14, 2022
1 parent 252c1ce commit 6184f0e
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 19 deletions.
1 change: 1 addition & 0 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ runs:
shell: bash

- name: Install cbmc-viewer
# If you update this version number, remember to bump it in `src/setup.rs` too
run: ./scripts/setup/install_viewer.sh 3.5
shell: bash

Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ dependencies = [

[[package]]
name = "cprover_bindings"
version = "0.0.0"
version = "0.4.0"
dependencies = [
"lazy_static",
"linear-map",
Expand Down Expand Up @@ -373,14 +373,14 @@ checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"

[[package]]
name = "kani"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"kani_macros",
]

[[package]]
name = "kani-compiler"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"ar",
"atty",
Expand All @@ -404,7 +404,7 @@ dependencies = [

[[package]]
name = "kani-driver"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"anyhow",
"clap",
Expand All @@ -418,7 +418,7 @@ dependencies = [

[[package]]
name = "kani-verifier"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"anyhow",
"home",
Expand All @@ -427,19 +427,19 @@ dependencies = [

[[package]]
name = "kani_macros"
version = "0.3.0"
version = "0.4.0"

[[package]]
name = "kani_metadata"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"cprover_bindings",
"serde",
]

[[package]]
name = "kani_queries"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"tracing",
]
Expand Down Expand Up @@ -948,7 +948,7 @@ checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"

[[package]]
name = "std"
version = "0.3.0"
version = "0.4.0"

[[package]]
name = "string-interner"
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "kani-verifier"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
description = "A bit-precise model checker for Rust."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion cprover_bindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "cprover_bindings"
version = "0.0.0"
version = "0.4.0"
edition = "2018"
license = "MIT OR Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion kani-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "kani-compiler"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
license = "MIT OR Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion kani-compiler/kani_queries/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "kani_queries"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
license = "MIT OR Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion kani-driver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "kani-driver"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
description = "Build a project with Kani and run all proof harnesses"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion kani_metadata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "kani_metadata"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
license = "MIT OR Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion library/kani/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "kani"
version = "0.3.0"
version = "0.4.0"
edition = "2018"
license = "MIT OR Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion library/kani_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "kani_macros"
version = "0.3.0"
version = "0.4.0"
edition = "2018"
license = "MIT OR Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion library/std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Note: this package is intentionally named std to make sure the names of
# standard library symbols are preserved
name = "std"
version = "0.3.0"
version = "0.4.0"
edition = "2018"
license = "MIT OR Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion src/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ fn setup_python_deps(kani_dir: &Path, os: &os_info::Info) -> Result<()> {
let pyroot = kani_dir.join("pyroot");

// TODO: this is a repetition of versions from kani/scripts/setup/$OS/install_deps.sh
let pkg_versions = &["cbmc-viewer==3.2", "colorama==0.4.3"];
let pkg_versions = &["cbmc-viewer==3.5", "colorama==0.4.3"];

if os.os_type() == os_info::Type::Ubuntu
&& *os.version() == os_info::Version::Semantic(18, 4, 0)
Expand Down

0 comments on commit 6184f0e

Please sign in to comment.