Skip to content
Merged
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
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,34 @@ 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.66.0]

### Breaking Changes
* Fail if stub verified doesn't have a contract harness by @carolynzech in https://github.com/model-checking/kani/pull/4295

### What's Changed
* Add loop invariant support for `while let` loop by @thanhnguyen-aws in https://github.com/model-checking/kani/pull/4279
* Update README by @carolynzech in https://github.com/model-checking/kani/pull/4291
* Kani Book Documentation Improvements by @carolynzech in https://github.com/model-checking/kani/pull/4296
* Share body cache between harnesses within a codegen unit by @AlexanderPortland in https://github.com/model-checking/kani/pull/4276
* Add loop-contracts support for `for` loop by @thanhnguyen-aws in https://github.com/model-checking/kani/pull/4143
* RFC: Partitioned proofs by @AlexanderPortland in https://github.com/model-checking/kani/pull/4228
* Handle const generics in stubbing code by @zhassan-aws in https://github.com/model-checking/kani/pull/4323
* Replace fxhash with rustc-hash by @zhassan-aws in https://github.com/model-checking/kani/pull/4341
* Fix LLBC regressions by @zhassan-aws in https://github.com/model-checking/kani/pull/4338
* Combo of small performance changes by @AlexanderPortland in https://github.com/model-checking/kani/pull/4314
* Implement BoundedArbitrary for boxed slices by @zhassan-aws in https://github.com/model-checking/kani/pull/4340
* Autoharness: use SHA-1 to produce codegen unit file names by @tautschnig in https://github.com/model-checking/kani/pull/4370
* Update attributes.md by @0xsecaas in https://github.com/model-checking/kani/pull/4376
* Switch macos-13 CI jobs to macos-15-intel by @tautschnig in https://github.com/model-checking/kani/pull/4442
* Incrementally update charon submodule with LLBC backend adaptations by @tautschnig in https://github.com/model-checking/kani/pull/4445
* Rust toolchain upgraded to 2025-11-05 by @carolynzech, @tautschnig, @thanhnguyen-aws, @zhassan-aws

### New Contributors
* @0xsecaas made their first contribution in https://github.com/model-checking/kani/pull/4376

**Full Changelog**: https://github.com/model-checking/kani/compare/kani-0.65.0...kani-0.66.0

## [0.65.0]

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

[[package]]
name = "build-kani"
version = "0.65.0"
version = "0.66.0"
dependencies = [
"anyhow",
"cargo_metadata",
Expand Down Expand Up @@ -424,7 +424,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"

[[package]]
name = "cprover_bindings"
version = "0.65.0"
version = "0.66.0"
dependencies = [
"lazy_static",
"linear-map",
Expand Down Expand Up @@ -927,15 +927,15 @@ dependencies = [

[[package]]
name = "kani"
version = "0.65.0"
version = "0.66.0"
dependencies = [
"kani_core",
"kani_macros",
]

[[package]]
name = "kani-compiler"
version = "0.65.0"
version = "0.66.0"
dependencies = [
"charon",
"clap",
Expand Down Expand Up @@ -973,7 +973,7 @@ dependencies = [

[[package]]
name = "kani-driver"
version = "0.65.0"
version = "0.66.0"
dependencies = [
"anyhow",
"cargo_metadata",
Expand Down Expand Up @@ -1003,7 +1003,7 @@ dependencies = [

[[package]]
name = "kani-verifier"
version = "0.65.0"
version = "0.66.0"
dependencies = [
"anyhow",
"home",
Expand All @@ -1012,14 +1012,14 @@ dependencies = [

[[package]]
name = "kani_core"
version = "0.65.0"
version = "0.66.0"
dependencies = [
"kani_macros",
]

[[package]]
name = "kani_macros"
version = "0.65.0"
version = "0.66.0"
dependencies = [
"proc-macro-error2",
"proc-macro2",
Expand All @@ -1031,7 +1031,7 @@ dependencies = [

[[package]]
name = "kani_metadata"
version = "0.65.0"
version = "0.66.0"
dependencies = [
"clap",
"cprover_bindings",
Expand Down Expand Up @@ -1783,7 +1783,7 @@ dependencies = [

[[package]]
name = "std"
version = "0.65.0"
version = "0.66.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.65.0"
version = "0.66.0"
edition = "2024"
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.65.0"
version = "0.66.0"
edition = "2024"
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.65.0"
version = "0.66.0"
edition = "2024"
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.65.0"
version = "0.66.0"
edition = "2024"
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.65.0"
version = "0.66.0"
edition = "2024"
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.65.0"
version = "0.66.0"
edition = "2024"
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.65.0"
version = "0.66.0"
edition = "2024"
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.65.0"
version = "0.66.0"
edition = "2024"
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.65.0"
version = "0.66.0"
edition = "2024"
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.65.0"
version = "0.66.0"
edition = "2024"
description = "Builds Kani, Sysroot and release bundle."
license = "MIT OR Apache-2.0"
Expand Down
Loading