chore: prepare changelog for release

This commit is contained in:
rvcas 2023-07-15 21:34:41 -04:00
parent 1b8e94fe32
commit 77a627817b
No known key found for this signature in database
GPG Key ID: C09B64E263F7D68C
3 changed files with 32 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# Changelog
## v1.0.13-alpha - unreleased
## v1.0.13-alpha - 2023-07-15
### Added

View File

@ -81,4 +81,9 @@ mod tests {
fn expect_bool_sugar() {
assert_expr!("expect something.field == wow");
}
#[test]
fn expect_trace_if_false() {
assert_expr!("expect foo?");
}
}

View File

@ -0,0 +1,26 @@
---
source: crates/aiken-lang/src/parser/expr/assignment.rs
description: "Code:\n\nexpect foo?"
---
Assignment {
location: 0..11,
value: TraceIfFalse {
location: 7..11,
value: Var {
location: 7..10,
name: "foo",
},
},
pattern: Constructor {
is_record: false,
location: 0..11,
name: "True",
arguments: [],
module: None,
constructor: (),
with_spread: false,
tipo: (),
},
kind: Expect,
annotation: None,
}