Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Kani version to 0.37.0 #2781

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,38 @@ This file was introduced starting Kani 0.23.0, so it only contains changes from
## [0.37.0]

### Major Changes

* Delete obsolete stubs for `Vec` and related options ([pull request](https://github.com/model-checking/kani/pull/2770) by @zhassan-aws)

## What's Changed

* Function Contracts: Support for defining and checking `requires` and `ensures` clauses by @JustusAdam in https://github.com/model-checking/kani/pull/2655
* Do not run performance benchmarks for tags by @adpaco-aws in https://github.com/model-checking/kani/pull/2745
* Upgrade rust toolchain to 2023-09-07 by @tautschnig in https://github.com/model-checking/kani/pull/2743
* Toolchain upgrade workflow: fix de-duplicating issues by @tautschnig in https://github.com/model-checking/kani/pull/2749
* Update RFC process by @celinval in https://github.com/model-checking/kani/pull/2716
* Remove build files generated with `cargo doc` command by @adpaco-aws in https://github.com/model-checking/kani/pull/2750
* Automatic toolchain upgrade to nightly-2023-09-08 by @github-actions in https://github.com/model-checking/kani/pull/2752
* Automatic toolchain upgrade to nightly-2023-09-09 by @github-actions in https://github.com/model-checking/kani/pull/2755
* Fixing the Footnotes and Feature Flag on the Function Contracts RFC by @JustusAdam in https://github.com/model-checking/kani/pull/2754
* Upgrade to Kissat 3.1.1 by @zhassan-aws in https://github.com/model-checking/kani/pull/2756
* Fix hashset perf test by @zhassan-aws in https://github.com/model-checking/kani/pull/2758
* Add support for the ARM64 Linux platform by @adpaco-aws in https://github.com/model-checking/kani/pull/2757
* Automatic toolchain upgrade to nightly-2023-09-10 by @github-actions in https://github.com/model-checking/kani/pull/2760
* Automatic toolchain upgrade to nightly-2023-09-11 by @github-actions in https://github.com/model-checking/kani/pull/2764
* Force any_vec capacity to match length by @celinval in https://github.com/model-checking/kani/pull/2765
* Fix syntax errors in Kissat checking script by @tautschnig in https://github.com/model-checking/kani/pull/2769
* Update Rust toolchain to 2023-09-15 by @tautschnig in https://github.com/model-checking/kani/pull/2768
* Add range demo example by @zhassan-aws in https://github.com/model-checking/kani/pull/2772
* Bump CBMC version by @zhassan-aws in https://github.com/model-checking/kani/pull/2771
* Automatic toolchain upgrade to nightly-2023-09-16 by @github-actions in https://github.com/model-checking/kani/pull/2773
* Automatic toolchain upgrade to nightly-2023-09-17 by @github-actions in https://github.com/model-checking/kani/pull/2774
* Automatic toolchain upgrade to nightly-2023-09-18 by @github-actions in https://github.com/model-checking/kani/pull/2775
* Update rust toolchain to nightly-2023-09-19 by @remi-delmas-3000 in https://github.com/model-checking/kani/pull/2778
* Minor version update of deps using cargo update by @remi-delmas-3000 in https://github.com/model-checking/kani/pull/2779
* Major version updates by @remi-delmas-3000 in https://github.com/model-checking/kani/pull/2780

**Full Changelog**: https://github.com/model-checking/kani/compare/kani-0.36.0...kani-0.37.0
## [0.36.0]

## What's Changed
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ dependencies = [

[[package]]
name = "build-kani"
version = "0.36.0"
version = "0.37.0"
dependencies = [
"anyhow",
"cargo_metadata",
Expand Down Expand Up @@ -264,7 +264,7 @@ dependencies = [

[[package]]
name = "cprover_bindings"
version = "0.36.0"
version = "0.37.0"
dependencies = [
"lazy_static",
"linear-map",
Expand Down Expand Up @@ -473,14 +473,14 @@ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"

[[package]]
name = "kani"
version = "0.36.0"
version = "0.37.0"
dependencies = [
"kani_macros",
]

[[package]]
name = "kani-compiler"
version = "0.36.0"
version = "0.37.0"
dependencies = [
"clap",
"cprover_bindings",
Expand All @@ -501,7 +501,7 @@ dependencies = [

[[package]]
name = "kani-driver"
version = "0.36.0"
version = "0.37.0"
dependencies = [
"anyhow",
"cargo_metadata",
Expand All @@ -528,7 +528,7 @@ dependencies = [

[[package]]
name = "kani-verifier"
version = "0.36.0"
version = "0.37.0"
dependencies = [
"anyhow",
"home",
Expand All @@ -537,7 +537,7 @@ dependencies = [

[[package]]
name = "kani_macros"
version = "0.36.0"
version = "0.37.0"
dependencies = [
"proc-macro-error",
"proc-macro2",
Expand All @@ -547,7 +547,7 @@ dependencies = [

[[package]]
name = "kani_metadata"
version = "0.36.0"
version = "0.37.0"
dependencies = [
"clap",
"cprover_bindings",
Expand Down Expand Up @@ -1136,7 +1136,7 @@ checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"

[[package]]
name = "std"
version = "0.36.0"
version = "0.37.0"
dependencies = [
"kani",
]
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.36.0"
version = "0.37.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.36.0"
version = "0.37.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
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.36.0"
version = "0.37.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
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.36.0"
version = "0.37.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.36.0"
version = "0.37.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
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.36.0"
version = "0.37.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
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.36.0"
version = "0.37.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
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.36.0"
version = "0.37.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion tools/build-kani/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "build-kani"
version = "0.36.0"
version = "0.37.0"
edition = "2021"
description = "Builds Kani, Sysroot and release bundle."
license = "MIT OR Apache-2.0"
Expand Down