Skip to content

Commit ac46d98

Browse files
authored
Bump Kani version to 0.49.0 (rust-lang#3126)
Updated version in all `Cargo.toml` files (via `find . -name Cargo.toml -exec sed -i 's/version = "0.48.0"/version = "0.49.0"/' {} \;`) and ran `cargo build-dev` to have `Cargo.lock` files updated. GitHub generated release notes: ## What's Changed * Upgrade Rust toolchain to 2024-03-14 by @zhassan-aws in model-checking/kani#3081 * Disable removal of storage markers by @zhassan-aws in model-checking/kani#3083 * Automatic cargo update to 2024-03-18 by @github-actions in model-checking/kani#3086 * Bump tests/perf/s2n-quic from `1a7faa8` to `9e39ca0` by @dependabot in model-checking/kani#3087 * Upgrade toolchain to nightly-2024-03-15 by @celinval in model-checking/kani#3084 * Add optional scatterplot to benchcomp output by @tautschnig in model-checking/kani#3077 * Benchcomp scatterplots: quote axis labels by @tautschnig in model-checking/kani#3097 * Expand ${var} in benchcomp variant `env` by @karkhaz in model-checking/kani#3090 * Add test for rust-lang#3099 by @zhassan-aws in model-checking/kani#3100 * Automatic cargo update to 2024-03-25 by @github-actions in model-checking/kani#3103 * Bump tests/perf/s2n-quic from `1a7faa8` to `0a60ec1` by @dependabot in model-checking/kani#3104 * Implement validity checks by @celinval in model-checking/kani#3085 * Add `benchcomp filter` command by @karkhaz in model-checking/kani#3105 * Add CI test for --use-local-toolchain by @jaisnan in model-checking/kani#3074 * Upgrade Rust toolchain to `nightly-2024-03-21` by @adpaco-aws in model-checking/kani#3102 * Use `intrinsic_name` to get the intrinsic name by @adpaco-aws in model-checking/kani#3114 * Bump tests/perf/s2n-quic from `0a60ec1` to `2d5e891` by @dependabot in model-checking/kani#3118 * Allow modifies clause for verification only by @feliperodri in model-checking/kani#3098 * Automatic cargo update to 2024-04-01 by @github-actions in model-checking/kani#3117 * Automatic cargo update to 2024-04-04 by @github-actions in model-checking/kani#3122 * Remove bookrunner by @tautschnig in model-checking/kani#3123 * Upgrade Rust toolchain to nightly-2024-03-29 by @feliperodri in model-checking/kani#3116 * Remove unnecessary build step for some workflows by @zhassan-aws in model-checking/kani#3124 * Ensure storage markers are kept in std code by @zhassan-aws in model-checking/kani#3080 **Full Changelog**: model-checking/kani@kani-0.48.0...kani-0.49.0
1 parent c4f16e9 commit ac46d98

File tree

11 files changed

+32
-18
lines changed

11 files changed

+32
-18
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ 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.49.0]
8+
9+
### What's Changed
10+
* Disable removal of storage markers by @zhassan-aws in https://github.com/model-checking/kani/pull/3083
11+
* Ensure storage markers are kept in std code by @zhassan-aws in https://github.com/model-checking/kani/pull/3080
12+
* Implement validity checks by @celinval in https://github.com/model-checking/kani/pull/3085
13+
* Allow modifies clause for verification only by @feliperodri in https://github.com/model-checking/kani/pull/3098
14+
* Add optional scatterplot to benchcomp output by @tautschnig in https://github.com/model-checking/kani/pull/3077
15+
* Expand ${var} in benchcomp variant `env` by @karkhaz in https://github.com/model-checking/kani/pull/3090
16+
* Add `benchcomp filter` command by @karkhaz in https://github.com/model-checking/kani/pull/3105
17+
* Upgrade Rust toolchain to 2024-03-29 by @zhassan-aws @celinval @adpaco-aws @feliperodri
18+
19+
**Full Changelog**: https://github.com/model-checking/kani/compare/kani-0.48.0...kani-0.49.0
20+
721
## [0.48.0]
822

923
### Major Changes

Cargo.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
9797

9898
[[package]]
9999
name = "build-kani"
100-
version = "0.48.0"
100+
version = "0.49.0"
101101
dependencies = [
102102
"anyhow",
103103
"cargo_metadata",
@@ -233,7 +233,7 @@ dependencies = [
233233

234234
[[package]]
235235
name = "cprover_bindings"
236-
version = "0.48.0"
236+
version = "0.49.0"
237237
dependencies = [
238238
"lazy_static",
239239
"linear-map",
@@ -410,14 +410,14 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
410410

411411
[[package]]
412412
name = "kani"
413-
version = "0.48.0"
413+
version = "0.49.0"
414414
dependencies = [
415415
"kani_macros",
416416
]
417417

418418
[[package]]
419419
name = "kani-compiler"
420-
version = "0.48.0"
420+
version = "0.49.0"
421421
dependencies = [
422422
"clap",
423423
"cprover_bindings",
@@ -438,7 +438,7 @@ dependencies = [
438438

439439
[[package]]
440440
name = "kani-driver"
441-
version = "0.48.0"
441+
version = "0.49.0"
442442
dependencies = [
443443
"anyhow",
444444
"cargo_metadata",
@@ -466,7 +466,7 @@ dependencies = [
466466

467467
[[package]]
468468
name = "kani-verifier"
469-
version = "0.48.0"
469+
version = "0.49.0"
470470
dependencies = [
471471
"anyhow",
472472
"home",
@@ -475,7 +475,7 @@ dependencies = [
475475

476476
[[package]]
477477
name = "kani_macros"
478-
version = "0.48.0"
478+
version = "0.49.0"
479479
dependencies = [
480480
"proc-macro-error",
481481
"proc-macro2",
@@ -485,7 +485,7 @@ dependencies = [
485485

486486
[[package]]
487487
name = "kani_metadata"
488-
version = "0.48.0"
488+
version = "0.49.0"
489489
dependencies = [
490490
"clap",
491491
"cprover_bindings",
@@ -992,7 +992,7 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
992992

993993
[[package]]
994994
name = "std"
995-
version = "0.48.0"
995+
version = "0.49.0"
996996
dependencies = [
997997
"kani",
998998
]

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.48.0"
6+
version = "0.49.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.48.0"
6+
version = "0.49.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.48.0"
6+
version = "0.49.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.48.0"
6+
version = "0.49.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.48.0"
6+
version = "0.49.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.48.0"
6+
version = "0.49.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.48.0"
6+
version = "0.49.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.48.0"
8+
version = "0.49.0"
99
edition = "2021"
1010
license = "MIT OR Apache-2.0"
1111
publish = false

tools/build-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 = "build-kani"
6-
version = "0.48.0"
6+
version = "0.49.0"
77
edition = "2021"
88
description = "Builds Kani, Sysroot and release bundle."
99
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)