Update CHANGELOG.md

This commit is contained in:
KtorZ 2024-08-23 10:41:20 +02:00
parent 0f905045e7
commit d1ee90a3a0
No known key found for this signature in database
GPG Key ID: 33173CB6F77F4277
1 changed files with 8 additions and 0 deletions

View File

@ -32,6 +32,14 @@
- **aiken-lang**: fix zero-arg builtins `mk_nil_data` and `mk_nil_pair_data` invokation. @KtorZ
- **aiken-lang**: rename some builtins. @KtorZ
| old name | new name |
| --- | --- |
| `mk_nil_data` | `new_list` |
| `mk_pair_data` | `new_pair` |
| `mk_nil_pair_data` | `new_pairs` |
- **aiken-lang**: duplicate import lines are now automatically merged instead of raising a warning. However, imports can no longer appear anywhere in the file and must come as the first definitions. @KtorZ
- **aiken-lang**: remove warning on discarded expect, allowing to keep 'side-effects' when necessary. See [#967](https://github.com/aiken-lang/aiken/pull/967). @KtorZ