From 0761608baaa477b502c43a213a1cb31639756e95 Mon Sep 17 00:00:00 2001 From: Michael Tautschnig Date: Fri, 21 Jun 2024 04:45:11 +0000 Subject: [PATCH] Patch release CBMC 6.0.1 Fixes bugs surfaced by Kani and hw-cbmc experimenting as well as the release process itself. --- CHANGELOG | 16 ++++++++++++++++ src/config.inc | 2 +- src/libcprover-rust/Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index f59d308dc3f..ea5b5c5a764 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,19 @@ +# CBMC 6.0.1 + +## Bug Fixes +* Fix Python syntax error by @tautschnig in https://github.com/diffblue/cbmc/pull/8344 +* Use GNU parallel in Windows CI job by @tautschnig in https://github.com/diffblue/cbmc/pull/8345 +* goto-synthesizer: ignore __CPROVER_-prefixed symbols by @tautschnig in https://github.com/diffblue/cbmc/pull/8348 +* Union member fix by @kroening in https://github.com/diffblue/cbmc/pull/8347 +* GOTO conversion: Declaration hops must not invalidate incomplete gotos by @tautschnig in https://github.com/diffblue/cbmc/pull/8349 +* Increase Windows/clcache size to 2 GB by @tautschnig in https://github.com/diffblue/cbmc/pull/8346 +* homebrew-pr CI notification: install go by @tautschnig in https://github.com/diffblue/cbmc/pull/8340 +* add two helpers for bv_typet by @kroening in https://github.com/diffblue/cbmc/pull/8350 +* reduce default verbosity of cprover binary by @kroening in https://github.com/diffblue/cbmc/pull/8352 +* reduce verbosity of runtime messages by @kroening in https://github.com/diffblue/cbmc/pull/8354 + +**Full Changelog**: https://github.com/diffblue/cbmc/compare/cbmc-6.0.0...cbmc-6.0.1 + # CBMC 6.0.0 ## Major Changes diff --git a/src/config.inc b/src/config.inc index 9a829064fc4..4c90ee957af 100644 --- a/src/config.inc +++ b/src/config.inc @@ -79,7 +79,7 @@ endif OSX_IDENTITY="Developer ID Application: Daniel Kroening" # Detailed version information -CBMC_VERSION = 6.0.0 +CBMC_VERSION = 6.0.1 # Use the CUDD library for BDDs, can be installed using `make -C src cudd-download` # CUDD = ../../cudd-3.0.0 diff --git a/src/libcprover-rust/Cargo.toml b/src/libcprover-rust/Cargo.toml index a31fe44b96c..f222bb56f85 100644 --- a/src/libcprover-rust/Cargo.toml +++ b/src/libcprover-rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libcprover_rust" -version = "6.0.0" +version = "6.0.1" edition = "2021" description = "Rust API for CBMC and assorted CProver tools" repository = "https://github.com/diffblue/cbmc"