Skip to content

Commit

Permalink
chore: release corset v9.7.11
Browse files Browse the repository at this point in the history
  • Loading branch information
DavePearce committed Jun 5, 2024
1 parent f6257a1 commit ca2145b
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 6 deletions.
78 changes: 77 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.10"
version = "9.7.11"
edition = "2021"
rust-version = "1.70.0"
authors = [ "Franklin Delehelle <[email protected]>" ]
Expand Down
5 changes: 3 additions & 2 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""
Expand All @@ -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
Expand All @@ -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"},
Expand Down

0 comments on commit ca2145b

Please sign in to comment.