chore: update changelog

This commit is contained in:
rvcas 2023-08-16 22:55:59 -04:00
parent 649039c993
commit b138cb0ccd
No known key found for this signature in database
GPG Key ID: C09B64E263F7D68C
1 changed files with 23 additions and 1 deletions

View File

@ -2,10 +2,26 @@
## v1.0.14-alpha - 2023-MM-DD
### Added
- **aiken**: `new` command now fetches latest stdlib version
- **aiken-lang**: new `and` and `or` chaining
```
and {
1 == 1,
or {
2 == 2,
3 != 2,
True,
},
}
```
### Changed
- **aiken-lang**: significantly improved pattern matching exhuastiveness checking
- **aiken-lang**: Tx Simulate now returns a list of execution budgets for each
redeemer instead of calculating the total units required to run all the scripts.
redeemer instead of calculating the total units required to run all the scripts.
- **aiken-lang**: Now code gen uses a tree abstraction to build the Aiken
Intermediary Representation. This now fixes quite a number of minor issues
while making the code more maintainable. This is a large leap towards a stable
@ -23,6 +39,12 @@ redeemer instead of calculating the total units required to run all the scripts.
- **aiken-lang**: Recursion optimization to prevent static parameters from being
passed through every recursion
### Fixed
- **aiken-lsp**: fix diagnostics and formatting on windows vscode
- **aiken**: decode should always print to textual
- **uplc**: pair type formatting
## v1.0.13-alpha - 2023-07-15
### Added