Skip to content

Commit 8e95868

Browse files
authored
Update and rename CHANGELOG to CHANGELOG.md (#2269)
1 parent a9d9c3f commit 8e95868

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG renamed to CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ This file was introduced starting Kani 0.23.0, so it only contains changes from
66

77
## [0.23.0]
88

9-
### **Breaking Changes**
9+
### Breaking Changes
1010

11-
- The second parameter in the `kani::any_where` function (`_msg: &'static str`) was removed to make the function more ergonomic to use.
11+
- Remove the second parameter in the `kani::any_where` function by @zhassan-aws in #2257
12+
We removed the second parameter in the `kani::any_where` function (`_msg: &'static str`) to make the function more ergonomic to use.
1213
We suggest moving the explanation for why the assumption is introduced into a comment.
1314
For example, the following code:
1415
```rust
@@ -19,3 +20,7 @@ should be replaced by:
1920
// Restrict the length to a value less than 5
2021
let len: usize = kani::any_where(|x| *x < 5);
2122
```
23+
24+
### Major Changes
25+
26+
- Enable the build cache to avoid recompiling crates that haven't changed, and introduce `--force-build` option to compile all crates from scratch by @celinval in #2232.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repository = "https://github.com/model-checking/kani"
1414
documentation = "https://model-checking.github.io/kani/"
1515
homepage = "https://github.com/model-checking/kani"
1616
# N.B. Cargo.* is included automatically:
17-
include = ["/src", "/build.rs", "/rust-toolchain.toml", "/LICENSE-*", "/README.md", "/CHANGELOG"]
17+
include = ["/src", "/build.rs", "/rust-toolchain.toml", "/LICENSE-*", "/README.md", "/CHANGELOG.md"]
1818

1919
[dependencies]
2020
anyhow = "1"

0 commit comments

Comments
 (0)