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.60.0 #3923

Merged
merged 5 commits into from
Mar 6, 2025
Merged
Show file tree
Hide file tree
Changes from 2 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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ This file contains notable changes (e.g. breaking changes, major changes, etc.)

This file was introduced starting Kani 0.23.0, so it only contains changes from version 0.23.0 onwards.

## [0.60.0]

### Breaking Changes
* Autoharness Subcommand by @carolynzech in https://github.com/model-checking/kani/pull/3874
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This still appears under "Breaking Changes". Please add it under a separate "Major Changes" section.


### What's Changed
* Fast fail feature - Stops verification process as soon as one failure is observed - Use case : CI speed up by @rajath-mk in https://github.com/model-checking/kani/pull/3879
* Adjust PropertyClass of assertions to identify UB by @tautschnig in https://github.com/model-checking/kani/pull/3860
* Remove isize overflow check for zst offsets by @carolynzech in https://github.com/model-checking/kani/pull/3897
* Convert raw URL to link by @flba-eb in https://github.com/model-checking/kani/pull/3907
* Update toolchain to 2025-03-02 by @remi-delmas-3000 @carolynzech @thanhnguyen-aws @zhassan-aws and @tautschnig

**Full Changelog**: https://github.com/model-checking/kani/compare/kani-0.59.0...kani-0.60.0

## [0.59.0]

### Breaking Changes
Expand Down
32 changes: 16 additions & 16 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ dependencies = [

[[package]]
name = "build-kani"
version = "0.59.0"
version = "0.60.0"
dependencies = [
"anyhow",
"cargo_metadata",
Expand Down Expand Up @@ -333,7 +333,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
dependencies = [
"lazy_static",
"windows-sys 0.59.0",
"windows-sys 0.52.0",
]

[[package]]
Expand Down Expand Up @@ -397,7 +397,7 @@ dependencies = [

[[package]]
name = "cprover_bindings"
version = "0.59.0"
version = "0.60.0"
dependencies = [
"lazy_static",
"linear-map",
Expand Down Expand Up @@ -611,7 +611,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
dependencies = [
"libc",
"windows-sys 0.59.0",
"windows-sys 0.52.0",
]

[[package]]
Expand Down Expand Up @@ -808,15 +808,15 @@ checksum = "72167d68f5fce3b8655487b8038691a3c9984ee769590f93f2a631f4ad64e4f5"

[[package]]
name = "kani"
version = "0.59.0"
version = "0.60.0"
dependencies = [
"kani_core",
"kani_macros",
]

[[package]]
name = "kani-compiler"
version = "0.59.0"
version = "0.60.0"
dependencies = [
"charon",
"clap",
Expand Down Expand Up @@ -855,7 +855,7 @@ dependencies = [

[[package]]
name = "kani-driver"
version = "0.59.0"
version = "0.60.0"
dependencies = [
"anyhow",
"cargo_metadata",
Expand Down Expand Up @@ -887,7 +887,7 @@ dependencies = [

[[package]]
name = "kani-verifier"
version = "0.59.0"
version = "0.60.0"
dependencies = [
"anyhow",
"home",
Expand All @@ -896,14 +896,14 @@ dependencies = [

[[package]]
name = "kani_core"
version = "0.59.0"
version = "0.60.0"
dependencies = [
"kani_macros",
]

[[package]]
name = "kani_macros"
version = "0.59.0"
version = "0.60.0"
dependencies = [
"proc-macro-error2",
"proc-macro2",
Expand All @@ -913,7 +913,7 @@ dependencies = [

[[package]]
name = "kani_metadata"
version = "0.59.0"
version = "0.60.0"
dependencies = [
"clap",
"cprover_bindings",
Expand Down Expand Up @@ -1447,7 +1447,7 @@ dependencies = [
"errno",
"libc",
"linux-raw-sys",
"windows-sys 0.59.0",
"windows-sys 0.52.0",
]

[[package]]
Expand Down Expand Up @@ -1627,12 +1627,12 @@ dependencies = [
"cfg-if",
"libc",
"psm",
"windows-sys 0.59.0",
"windows-sys 0.52.0",
]

[[package]]
name = "std"
version = "0.59.0"
version = "0.60.0"
dependencies = [
"kani",
]
Expand Down Expand Up @@ -1706,7 +1706,7 @@ dependencies = [
"getrandom 0.3.1",
"once_cell",
"rustix",
"windows-sys 0.59.0",
"windows-sys 0.52.0",
]

[[package]]
Expand Down Expand Up @@ -2100,7 +2100,7 @@ version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
dependencies = [
"windows-sys 0.59.0",
"windows-sys 0.52.0",
]

[[package]]
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.59.0"
version = "0.60.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.59.0"
version = "0.60.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.59.0"
version = "0.60.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.59.0"
version = "0.60.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.59.0"
version = "0.60.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.59.0"
version = "0.60.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion library/kani_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "kani_core"
version = "0.59.0"
version = "0.60.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.59.0"
version = "0.60.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.59.0"
version = "0.60.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.59.0"
version = "0.60.0"
edition = "2021"
description = "Builds Kani, Sysroot and release bundle."
license = "MIT OR Apache-2.0"
Expand Down
Loading