Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ecbdb14
Toolchain upgrade to nightly-2025-01-28 (#3855)
feliperodri Jan 28, 2025
cc07375
Allow multiple annotations, but check for duplicate targets. (#3808)
remi-delmas-3000 Jan 28, 2025
ad91bfa
Move documentation of kani_core modules to right places (#3851)
qinheping Jan 28, 2025
53013f3
Fix missing function declaration issue (#3862)
celinval Jan 29, 2025
5024b63
Fix transmute codegen when sizes are different (#3861)
celinval Jan 29, 2025
afd0469
Remove symtab2gb from bundle (#3865)
zhassan-aws Jan 30, 2025
edb1173
Update the rustc hack for CLion / RustRover (#3868)
celinval Jan 31, 2025
9872f12
Bump tests/perf/s2n-quic from `4500593` to `82dd0b5` (#3872)
dependabot[bot] Feb 3, 2025
b29868a
Automatic cargo update to 2025-02-03 (#3869)
github-actions[bot] Feb 3, 2025
380b1fb
Add reference for loop contracts (#3849)
qinheping Feb 4, 2025
d87dd23
remove flag float-overflow-check (#3873)
rajath-mk Feb 5, 2025
2955d5e
Bump Kani version to 0.59.0 (#3876)
Feb 5, 2025
94ed3f7
Add missing version number to changelog (#3877)
Feb 6, 2025
a66bb06
Automatic cargo update to 2025-02-10 (#3880)
github-actions[bot] Feb 10, 2025
759e2c5
Bump tests/perf/s2n-quic from `82dd0b5` to `a5d8422` (#3882)
dependabot[bot] Feb 10, 2025
4f78926
Fast fail feature - Stops verification process as soon as one failure…
rajath-mk Feb 11, 2025
8b2ec77
Autoharness Subcommand (#3874)
Feb 11, 2025
81e9aa3
Upgrade toolchain to 2/10 (#3883)
Feb 11, 2025
475ea5e
Add loop-contracts doc to SUMMARY (#3886)
qinheping Feb 12, 2025
ff3aea3
Support concrete playback for arrays of length 65 or greater (#3888)
Feb 14, 2025
d588378
Automatic cargo update to 2025-02-17 (#3889)
github-actions[bot] Feb 17, 2025
53b28f2
Bump tests/perf/s2n-quic from `a5d8422` to `00e3371` (#3894)
dependabot[bot] Feb 17, 2025
ac8e0b9
Adjust PropertyClass of assertions to identify UB (#3860)
tautschnig Feb 18, 2025
006e5da
Fix: regression test from #3888 has version control change (#3892)
Feb 19, 2025
51de000
Upgrade toolchain to 2025-02-11 (#3887)
thanhnguyen-aws Feb 21, 2025
2e95d8b
Remove isize overflow check for zst offsets (#3897)
Feb 21, 2025
fe0d9d2
Automatic toolchain upgrade to nightly-2025-02-12 (#3898)
github-actions[bot] Feb 21, 2025
9f41ed5
Merge commit 'fe0d9d2a63c' into stable
zhassan-aws Apr 3, 2025
860140a
Upgrade to Rust 1.86.0
zhassan-aws Apr 3, 2025
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ 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.59.0]

### Breaking Changes
* Deprecate `--enable-unstable` and `--restrict-vtable` by @celinval in https://github.com/model-checking/kani/pull/3859
* Do not report arithmetic overflow for floating point operations that produce +/-Inf by @rajath-mk in https://github.com/model-checking/kani/pull/3873

### What's Changed
* Fix validity checks for `char` by @celinval in https://github.com/model-checking/kani/pull/3853
* Support verifying contracts/stubs for generic types with multiple inherent implementations by @carolynzech in https://github.com/model-checking/kani/pull/3829
* Allow multiple stub_verified annotations, but check for duplicate targets by @remi-delmas-3000 in https://github.com/model-checking/kani/pull/3808
* Fix crash if a function pointer is created but never used by @celinval in https://github.com/model-checking/kani/pull/3862
* Fix transmute codegen when sizes are different by @celinval in https://github.com/model-checking/kani/pull/3861
* Stub linker to avoid missing symbols errors by @celinval in https://github.com/model-checking/kani/pull/3858
* Toolchain upgrade to nightly-2025-01-28 by @feliperodri @tautschnig

**Full Changelog**: https://github.com/model-checking/kani/compare/kani-0.58.0...kani-0.59.0

## [0.58.0]

### Major/Breaking Changes
Expand Down
Loading