-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #161 from 0xPolygonMiden/grjte-v02-changelog
chore: add changelog for v0.1 and v0.2
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Changelog | ||
|
||
## 0.2.0 (2023-02-22) | ||
|
||
- Added support for named constants (scalars, vectors, and matrices). | ||
- Added support for intermediate variables in `boundary_constraints` and `integrity_constraints` sections (scalars, vectors, and matrices). | ||
- Added support for binding identifier names to groups of trace columns (in addition to single columns, which were already supported). | ||
- Added the `$main` and `$aux` built-ins for accessing columns in the execution trace by index. | ||
- [BREAKING] Replaced the `$rand` built-in for accessing random values with an explicit `random_values` declaration section, enabling use of a custom identifier for the random values array. | ||
- Added support for binding identifiers to specific random values or groups of random values. | ||
- Made significant changes to the IR, including: | ||
- Moved the boundary constraints into the algebraic constraint graph. | ||
- Made the trace reference more general to support additional trace segments in the future. | ||
- Added analysis to differentiate between validity and transition constraints. | ||
- Added the `Sub` operation and removed the `Neg` operation. | ||
- [FIX] Fixed a bug in the Winterfell codegen output for auxiliary transition constraints. | ||
- Improved the Winterfell codegen by consolidating code generation for boundary and transition constraints and removing redundant parentheses. | ||
|
||
## 0.1.0 (2022-11-10) | ||
|
||
- Initial release of AirScript, including a minimal but complete implementation of the AirScript compiler for an initial basic set of language features. |