Skip to content

Commit

Permalink
chore: Release corset version 9.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
delehef committed Jan 18, 2024
1 parent afa88fc commit 8fc7e01
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

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

## [9.3.0] - 2024-01-18

### Bug Fixes

- Ensure all backings have the correct length
- Message on conditioning error

### Features

- Generate normalization constraints
- Generate binarity constraints for `@prove`-annotated type

### Miscellaneous Tasks

- Clippy

## [9.2.3] - 2024-01-17

### Bug Fixes
Expand All @@ -14,6 +30,10 @@ All notable changes to this project will be documented in this file.

- Better error messages on erroneous value updating

### Miscellaneous Tasks

- Release corset version 9.2.3

### Refactor

- Move columns_len to ConstraintSet
Expand Down
2 changes: 1 addition & 1 deletion 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.2.3"
version = "9.3.0"
edition = "2021"
rust-version = "1.70.0"
authors = [ "Franklin Delehelle <[email protected]>" ]
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ fn parse_column_attributes(source: AstNode) -> Result<ColumnAttributes> {
Base,
}
let re_type = regex_lite::Regex::new(
r":(?<RawMagma>i(?<Integer>\d+)|[a-z]+)?(@(?<Conditioning>bool|loob))?(?<Proven>@prove)?",
r"^:(?<RawMagma>i(?<Integer>\d+)|[a-z]+)?(@(?<Conditioning>bool|loob))?(?<Proven>@prove)?$",
)?;
let mut attributes = ColumnAttributes::default();
let mut state = ColumnParser::Begin;
Expand Down

0 comments on commit 8fc7e01

Please sign in to comment.