Skip to content

Commit

Permalink
Release v9.7.13 (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavePearce committed Jul 19, 2024
1 parent b25b10d commit b573a83
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

All notable changes to this project will be documented in this file.

## [9.7.13] - 2024-07-19

### Bug Fixes

- Fixes for `ratatui` dependency issue ([#216](https://github.com/Consensys/corset/issues/216))
- Truncated Column Names ([#226](https://github.com/Consensys/corset/issues/226))
- Different Behavior for Expansion and Native Flag Combinations ([#228](https://github.com/Consensys/corset/issues/228))
- Update `check` reporting for perspectives ([#229](https://github.com/Consensys/corset/issues/229))

### Features

- Support `RON` and `JSON` bin formats ([#223](https://github.com/Consensys/corset/issues/223))
- Support Perspective "blanking" ([#224](https://github.com/Consensys/corset/issues/224))
- Switch default `bin` format from `RON` to `JSON` ([#225](https://github.com/Consensys/corset/issues/225))

## [9.7.12] - 2024-06-20

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "corset"
version = "9.7.12"
version = "9.7.13"
edition = "2021"
rust-version = "1.70.0"
authors = [ "Franklin Delehelle <[email protected]>" ]
Expand Down
7 changes: 6 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,12 @@ fn generate_tests_from_lisp_files() {
// Write them out.
write_traces(&m, "accepts", &accepts);
write_traces(&m, "rejects", &rejects);
println!("DONE");
println!(
" Wrote {} / {} traces for {}.",
accepts.len(),
rejects.len(),
m.name
);
}
}
}
Expand Down

0 comments on commit b573a83

Please sign in to comment.