Skip to content

Commit 871c9e3

Browse files
Bump Kani version to 0.44.0 (#2970)
These are the auto-generated release notes for comparison purposes: ## What's Changed * Automate cargo update without dependabot by @tautschnig in #2942 * Update nightly toolchain to toolchain-2023-12-15 by @celinval in #2948 * Automatic cargo update to 2023-12-18 by @github-actions in #2951 * Migrate function, block and statement modules to StableMIR by @celinval in #2947 * Update Rust toolchain to `nightly-2023-12-18` by @adpaco-aws in #2953 * Update the rust toolchain to 2023-12-20 by @celinval in #2961 * Migrate foreign function, compiler-interface and kani-middle modules to use StableMIR by @celinval in #2959 * Build CBMC with `cmake` in all "CBMC latest" jobs by @adpaco-aws in #2965 * Automatic cargo update to 2024-01-01 by @github-actions in #2964 * Automatic cargo update to 2024-01-08 by @github-actions in #2968 * Upgrade to 2024-01-08 rust toolchain by @zhassan-aws in #2969 **Full Changelog**: kani-0.43.0...kani-0.44.0 By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses. --------- Co-authored-by: Adrian Palacios <73246657+adpaco-aws@users.noreply.github.com>
1 parent 2d23f1a commit 871c9e3

File tree

11 files changed

+26
-18
lines changed

11 files changed

+26
-18
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ This file contains notable changes (e.g. breaking changes, major changes, etc.)
44

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

7+
## [0.44.0]
8+
9+
### What's Changed
10+
11+
* Rust toolchain upgraded to `nightly-2024-01-08` by @adpaco-aws @celinval @zhassan-aws
12+
13+
**Full Changelog**: https://github.com/model-checking/kani/compare/kani-0.43.0...kani-0.44.0
14+
715
## [0.43.0]
816

917
### What's Changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ dependencies = [
119119

120120
[[package]]
121121
name = "build-kani"
122-
version = "0.43.0"
122+
version = "0.44.0"
123123
dependencies = [
124124
"anyhow",
125125
"cargo_metadata",
@@ -255,7 +255,7 @@ dependencies = [
255255

256256
[[package]]
257257
name = "cprover_bindings"
258-
version = "0.43.0"
258+
version = "0.44.0"
259259
dependencies = [
260260
"lazy_static",
261261
"linear-map",
@@ -438,14 +438,14 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
438438

439439
[[package]]
440440
name = "kani"
441-
version = "0.43.0"
441+
version = "0.44.0"
442442
dependencies = [
443443
"kani_macros",
444444
]
445445

446446
[[package]]
447447
name = "kani-compiler"
448-
version = "0.43.0"
448+
version = "0.44.0"
449449
dependencies = [
450450
"clap",
451451
"cprover_bindings",
@@ -466,7 +466,7 @@ dependencies = [
466466

467467
[[package]]
468468
name = "kani-driver"
469-
version = "0.43.0"
469+
version = "0.44.0"
470470
dependencies = [
471471
"anyhow",
472472
"cargo_metadata",
@@ -494,7 +494,7 @@ dependencies = [
494494

495495
[[package]]
496496
name = "kani-verifier"
497-
version = "0.43.0"
497+
version = "0.44.0"
498498
dependencies = [
499499
"anyhow",
500500
"home",
@@ -503,7 +503,7 @@ dependencies = [
503503

504504
[[package]]
505505
name = "kani_macros"
506-
version = "0.43.0"
506+
version = "0.44.0"
507507
dependencies = [
508508
"proc-macro-error",
509509
"proc-macro2",
@@ -513,7 +513,7 @@ dependencies = [
513513

514514
[[package]]
515515
name = "kani_metadata"
516-
version = "0.43.0"
516+
version = "0.44.0"
517517
dependencies = [
518518
"clap",
519519
"cprover_bindings",
@@ -1039,7 +1039,7 @@ checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
10391039

10401040
[[package]]
10411041
name = "std"
1042-
version = "0.43.0"
1042+
version = "0.44.0"
10431043
dependencies = [
10441044
"kani",
10451045
]

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "kani-verifier"
6-
version = "0.43.0"
6+
version = "0.44.0"
77
edition = "2021"
88
description = "A bit-precise model checker for Rust."
99
readme = "README.md"

cprover_bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "cprover_bindings"
6-
version = "0.43.0"
6+
version = "0.44.0"
77
edition = "2021"
88
license = "MIT OR Apache-2.0"
99
publish = false

kani-compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "kani-compiler"
6-
version = "0.43.0"
6+
version = "0.44.0"
77
edition = "2021"
88
license = "MIT OR Apache-2.0"
99
publish = false

kani-driver/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "kani-driver"
6-
version = "0.43.0"
6+
version = "0.44.0"
77
edition = "2021"
88
description = "Build a project with Kani and run all proof harnesses"
99
license = "MIT OR Apache-2.0"

kani_metadata/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "kani_metadata"
6-
version = "0.43.0"
6+
version = "0.44.0"
77
edition = "2021"
88
license = "MIT OR Apache-2.0"
99
publish = false

library/kani/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "kani"
6-
version = "0.43.0"
6+
version = "0.44.0"
77
edition = "2021"
88
license = "MIT OR Apache-2.0"
99
publish = false

library/kani_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "kani_macros"
6-
version = "0.43.0"
6+
version = "0.44.0"
77
edition = "2021"
88
license = "MIT OR Apache-2.0"
99
publish = false

library/std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Note: this package is intentionally named std to make sure the names of
66
# standard library symbols are preserved
77
name = "std"
8-
version = "0.43.0"
8+
version = "0.44.0"
99
edition = "2021"
1010
license = "MIT OR Apache-2.0"
1111
publish = false

0 commit comments

Comments
 (0)