Skip to content

Commit

Permalink
updated CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanfh committed Jul 23, 2024
1 parent e04d029 commit 60c0859
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,7 +1,31 @@
Release 0.1.12
Release 0.1.13
--------------
Not released yet

Additions:
- Unwrap operator, `x!`.
- Similar to try operator (`x?`), but panics if value is not present.
- "Field update" syntax. A shorthand to change a field of a structure.
- `.{ ..old_value, field = new_value }`
- `onyx watch` now works on MacOS.
- `iter.group_by`
- `core.os.args`
- `core.crypto.hmac`
- `core.encoding.json.Value.as_entry_array`

Removals:

Changes:
- `&&` and `||` now short-circuit.
- The size of tag field for unions is now dependent on the number of variants.

Bugfixes:


Release 0.1.12
--------------
19th May 2024

Additions:
- Ability to pipe into a method call.
- `x |> y->z() === y->z(x)`
Expand Down

0 comments on commit 60c0859

Please sign in to comment.