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.26.0 #2393

Merged
merged 2 commits into from
Apr 19, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,21 @@ 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.26.0]

### What's Changed

* The Kani reference now includes an ["Attributes"](https://model-checking.github.io/kani/reference/attributes.html) section that describes each of the attributes available in Kani (by @adpaco-aws)
karkhaz marked this conversation as resolved.
Show resolved Hide resolved
* Users' choice of SAT solver, specified by the `solver` attribute, is now propagated to the loop-contract synthesizer (by @qinheping)
* Unit tests generated by the concrete playback feature now compile correctly when using `RUSTFLAGS="--cfg=kani"` (by @jaisnan)
* The Rust toolchain is updated to 2023-02-16 (by @tautschnig)

**Full Changelog**: https://github.com/model-checking/kani/compare/kani-0.25.0...kani-0.26.0


## [0.25.0]

## What's Changed
### What's Changed

* Add implementation for the `#[kani::should_panic]` attribute by @adpaco-aws in https://github.com/model-checking/kani/pull/2315
* Upgrade Rust toolchain to nightly-2023-02-04 by @tautschnig in https://github.com/model-checking/kani/pull/2324
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ dependencies = [

[[package]]
name = "build-kani"
version = "0.25.0"
version = "0.26.0"
dependencies = [
"anyhow",
"cargo_metadata",
Expand Down Expand Up @@ -287,7 +287,7 @@ dependencies = [

[[package]]
name = "cprover_bindings"
version = "0.25.0"
version = "0.26.0"
dependencies = [
"lazy_static",
"linear-map",
Expand Down Expand Up @@ -549,14 +549,14 @@ checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"

[[package]]
name = "kani"
version = "0.25.0"
version = "0.26.0"
dependencies = [
"kani_macros",
]

[[package]]
name = "kani-compiler"
version = "0.25.0"
version = "0.26.0"
dependencies = [
"ar",
"atty",
Expand Down Expand Up @@ -584,7 +584,7 @@ dependencies = [

[[package]]
name = "kani-driver"
version = "0.25.0"
version = "0.26.0"
dependencies = [
"anyhow",
"atty",
Expand Down Expand Up @@ -613,7 +613,7 @@ dependencies = [

[[package]]
name = "kani-verifier"
version = "0.25.0"
version = "0.26.0"
dependencies = [
"anyhow",
"home",
Expand All @@ -622,7 +622,7 @@ dependencies = [

[[package]]
name = "kani_macros"
version = "0.25.0"
version = "0.26.0"
dependencies = [
"proc-macro-error",
"proc-macro2",
Expand All @@ -632,7 +632,7 @@ dependencies = [

[[package]]
name = "kani_metadata"
version = "0.25.0"
version = "0.26.0"
dependencies = [
"cprover_bindings",
"serde",
Expand All @@ -642,7 +642,7 @@ dependencies = [

[[package]]
name = "kani_queries"
version = "0.25.0"
version = "0.26.0"
dependencies = [
"strum",
"strum_macros",
Expand Down Expand Up @@ -1227,7 +1227,7 @@ checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"

[[package]]
name = "std"
version = "0.25.0"
version = "0.26.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.25.0"
version = "0.26.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.25.0"
version = "0.26.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.25.0"
version = "0.26.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
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.25.0"
version = "0.26.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.25.0"
version = "0.26.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.25.0"
version = "0.26.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.25.0"
version = "0.26.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.25.0"
version = "0.26.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.25.0"
version = "0.26.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.25.0"
version = "0.26.0"
edition = "2021"
description = "Builds Kani, Sysroot and release bundle."
license = "MIT OR Apache-2.0"
Expand Down