From ca2145b5d3d6c00e3d252040e2bc18c795789d07 Mon Sep 17 00:00:00 2001 From: DavePearce Date: Wed, 5 Jun 2024 13:22:58 +1200 Subject: [PATCH] chore: release `corset` v9.7.11 --- CHANGELOG.md | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++- Cargo.lock | 4 +-- Cargo.toml | 2 +- cliff.toml | 5 ++-- 4 files changed, 83 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93bf87f..670012f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,38 @@ All notable changes to this project will be documented in this file. -## [9.7.10] - 2024-03-06 +## [0.9.11] - 2024-06-05 + +### Bug Fixes + +- Fix `ifs::raise_ifs` #87 ([#97](https://github.com/Consensys/corset/issues/97)) +- Remove old `to_string` invokation ([#109](https://github.com/Consensys/corset/issues/109)) +- Fix Default Base for Interleaved Constraints ([#114](https://github.com/Consensys/corset/issues/114)) +- Rendering of columns in `convert` ([#110](https://github.com/Consensys/corset/issues/110)) +- Erroneous inversion optimization ([#108](https://github.com/Consensys/corset/issues/108)) +- Fix for `eq!` typing in `stdlib.lisp` ([#145](https://github.com/Consensys/corset/issues/145)) +- Fix for `corset compute` ([#156](https://github.com/Consensys/corset/issues/156)) +- Fix #158 ([#159](https://github.com/Consensys/corset/issues/159)) +- Incorrect typing of vector operations ([#175](https://github.com/Consensys/corset/issues/175)) + +### Features + +- Add missing bigInt package ([#137](https://github.com/Consensys/corset/issues/137)) + +### Build + +- Bump the cargo group across 1 directory with 2 updates ([#103](https://github.com/Consensys/corset/issues/103)) + +## [9.7.10] - 2024-03-07 ### Features - Add force-bin +### Miscellaneous Tasks + +- Release corset version 9.7.10 + ### Refactor - :nowarn -> :force @@ -1158,6 +1184,56 @@ All notable changes to this project will be documented in this file. ## [1.2.0] - 2022-12-18 +### Bug Fixes + +- Fix DEFUNALIAS +- Fix non-deterministic behavior due to hashmaps +- Fix Defconst +- Fix BranchIfElse +- Fix Go export +- Fix +- Fix module +- Fix multiple constants definition +- Fixed missing comma +- Fix naming conventions +- Fix inverted columns +- Fix columns computation steps ordering +- Fix mistake for in-range +- Fix relative indexing +- Fix relative indexing +- Fix constraint checking +- Fixes +- Fix negative moduli +- Fix ‶unreachable″ code +- Fix wrapping +- Fix go exporter +- Fix off-by-one error +- Fix wrong indices +- Fix Go export +- Fix permutation +- Fix padding +- Fix Binary/NOT padding +- Fix JSON export +- Fix +- Fix +- Fix missing initialization +- Fix +- Fix didnt-change +- Fix postgres +- Fix compile-time evaluation of constants +- Fix unused symbols detection +- Fix mangling +- Fix(?) JSON export +- Fix partial padding +- Fix binary/not padding +- Fix hashing of Handles +- Fix computation & export of columns +- Fix erroneous static if folding +- Fix +- Fix the computation not being shared across contexts +- Fix if-eq +- Fix padding of computed columns + ### Miscellaneous Tasks - Release corset version 1.2.0 diff --git a/Cargo.lock b/Cargo.lock index 12168e8..1a6ec37 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1521,9 +1521,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.3" +version = "1.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" +checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" dependencies = [ "aho-corasick", "memchr", diff --git a/Cargo.toml b/Cargo.toml index 76b1b24..428ff73 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "corset" -version = "9.7.10" +version = "9.7.11" edition = "2021" rust-version = "1.70.0" authors = [ "Franklin Delehelle " ] diff --git a/cliff.toml b/cliff.toml index 09c8516..bc3d59a 100644 --- a/cliff.toml +++ b/cliff.toml @@ -17,7 +17,7 @@ body = """ {% for group, commits in commits | group_by(attribute="group") %} ### {{ group | upper_first }} {% for commit in commits %} - - {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | upper_first }}\ + - {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message | split(pat='\n') | first | upper_first }}\ {% endfor %} {% endfor %}\n """ @@ -32,7 +32,7 @@ footer = """ # parse the commits based on https://www.conventionalcommits.org conventional_commits = true # filter out the commits that are not conventional -filter_unconventional = true +filter_unconventional = false # process each line of a commit as an individual commit split_commits = false # regex for preprocessing the commit messages @@ -43,6 +43,7 @@ commit_preprocessors = [ commit_parsers = [ { message = "^feat", group = "Features"}, { message = "^fix", group = "Bug Fixes"}, + { message = "^Fix", group = "Bug Fixes"}, { message = "^doc", group = "Documentation"}, { message = "^perf", group = "Performance"}, { message = "^refactor", group = "Refactor"},