Skip to content

Commit

Permalink
Bump Kani version to 0.43.0
Browse files Browse the repository at this point in the history
Signed-off-by: Felipe R. Monteiro <felisous@amazon.com>
  • Loading branch information
feliperodri committed Dec 13, 2023
1 parent f94b714 commit a12e9b7
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 19 deletions.
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.43.0]

## What's Changed
* Make `codegen_span` stable by @ouz-a in https://github.com/model-checking/kani/pull/2882
* Change reachability module to use StableMIR by @celinval in https://github.com/model-checking/kani/pull/2894
* Fix StableMIR migration documentation by @celinval in https://github.com/model-checking/kani/pull/2915
* Stabilize `find_debug_info` by @ouz-a in https://github.com/model-checking/kani/pull/2912
* Migrate hooks and place modules to use mostly StableMIR APIs by @celinval in https://github.com/model-checking/kani/pull/2910
* Migrate static handling and most of the operand codegen code to StableMIR by @celinval in https://github.com/model-checking/kani/pull/2931
* Migrate `rvalue` and `coercion` module to use StableMIR by @celinval in https://github.com/model-checking/kani/pull/2938
* Migrate `intrinsics` module to use StableMIR by @celinval in https://github.com/model-checking/kani/pull/2939

**Full Changelog**: https://github.com/model-checking/kani/compare/kani-0.42.0...kani-0.43.0

## [0.42.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.42.0"
version = "0.43.0"
dependencies = [
"anyhow",
"cargo_metadata",
Expand Down Expand Up @@ -255,7 +255,7 @@ dependencies = [

[[package]]
name = "cprover_bindings"
version = "0.42.0"
version = "0.43.0"
dependencies = [
"lazy_static",
"linear-map",
Expand Down Expand Up @@ -440,14 +440,14 @@ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"

[[package]]
name = "kani"
version = "0.42.0"
version = "0.43.0"
dependencies = [
"kani_macros",
]

[[package]]
name = "kani-compiler"
version = "0.42.0"
version = "0.43.0"
dependencies = [
"clap",
"cprover_bindings",
Expand All @@ -468,7 +468,7 @@ dependencies = [

[[package]]
name = "kani-driver"
version = "0.42.0"
version = "0.43.0"
dependencies = [
"anyhow",
"cargo_metadata",
Expand Down Expand Up @@ -496,7 +496,7 @@ dependencies = [

[[package]]
name = "kani-verifier"
version = "0.42.0"
version = "0.43.0"
dependencies = [
"anyhow",
"home",
Expand All @@ -505,7 +505,7 @@ dependencies = [

[[package]]
name = "kani_macros"
version = "0.42.0"
version = "0.43.0"
dependencies = [
"proc-macro-error",
"proc-macro2",
Expand All @@ -515,7 +515,7 @@ dependencies = [

[[package]]
name = "kani_metadata"
version = "0.42.0"
version = "0.43.0"
dependencies = [
"clap",
"cprover_bindings",
Expand Down Expand Up @@ -1050,7 +1050,7 @@ checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"

[[package]]
name = "std"
version = "0.42.0"
version = "0.43.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.42.0"
version = "0.43.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.42.0"
version = "0.43.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.42.0"
version = "0.43.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.42.0"
version = "0.43.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.42.0"
version = "0.43.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.42.0"
version = "0.43.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.42.0"
version = "0.43.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.42.0"
version = "0.43.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion tests/perf/s2n-quic
Submodule s2n-quic updated 207 files
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.42.0"
version = "0.43.0"
edition = "2021"
description = "Builds Kani, Sysroot and release bundle."
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit a12e9b7

Please sign in to comment.