Skip to content

Commit

Permalink
add initial v0.3.0 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
PgBiel committed Jul 29, 2024
1 parent 76bd4b2 commit a9f6911
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,6 @@
- [Nix Backend](./compiler/architecture/nix-backend.md)
- [CLI modifications](./compiler/architecture/cli-modifications.md)
- [Changelog](./compiler/changelog/README.md)
- [Glistix v0.2.0 (2024-06-12)](./compiler/changelog/v0-2-0.md)
- [Glistix v0.1.0 (2024-04-27)](./compiler/changelog/v0-1-0.md)
- [Glistix v0.2.0 (2024-06-12)](./compiler/changelog/v0-2-0.md)
- [Glistix v0.3.0 (Unreleased)](./compiler/changelog/v0-3-0.md)
12 changes: 12 additions & 0 deletions src/compiler/changelog/v0-3-0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Glistix v0.3.0 (Unreleased)

- **Base Gleam version:** v1.3.2

- Updated Glistix to Gleam v1.3.2 ([#8](https://github.com/Glistix/glistix/pull/8), [#11](https://github.com/Glistix/glistix/pull/11) and [#12](https://github.com/Glistix/glistix/pull/12)).
- This release improves LSP autocomplete, adds arithmetic operation support to case clause guards, adds version specifier support to `gleam add`, and brings several other improvements and bug fixes to the compiler.
- A prebuilt Wasm binary, in order to use the compiler in the browser, has been added to releases.
- Ported some fixes for the JavaScript target from Gleam 1.3 to the Nix target as well ([#13](https://github.com/Glistix/glistix/pull/13)).
- This fixes a miscompilation when using a record constructor alias in a constant (see [gleam-lang/gleam#3294](https://github.com/gleam-lang/gleam/issues/3294)).
- A similar fix has been made to record constructor aliases in case clause guards as well (see [gleam-lang/gleam#3447](https://github.com/gleam-lang/gleam/pull/3447)).
- This also adds a compile-time error when trying to use a non-byte-aligned bit array on the Nix target (which currently only supports byte-aligned bit arrays).
- Finally, this ensures `gleam.nix` (exported to the build folder and used to import the Nix prelude) isn't unnecessarily rewritten to avoid problems with watchers.

0 comments on commit a9f6911

Please sign in to comment.