Skip to content

Commit

Permalink
Merge branch 'gleam-lang:main' into lsp/inlay-hints-on-pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
ascandone authored Mar 8, 2025
2 parents b003955 + 429d3b1 commit 57ebc57
Show file tree
Hide file tree
Showing 19 changed files with 506 additions and 191 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
# Changelog

## Unreleased
## v1.9.0-rc2 - 2025-03-07

### Compiler

- Made runtime warnings regarding the use of deprecated BitArray properties in
JavaScript FFI code more compact. They are now one line instead of three.
([Richard Viney](https://github.com/richard-viney))

### Bug fixes

- Fixed a bug that would result in displaying the wrong name when running
`gleam --version`.
([Giacomo Cavalieri](https://github.com/giacomocavalieri))

- Fixed a bug in the `generate json encoder` and `generate dynamic decoder` that
would result in generating invalid code for variants with no fields.
([Giacomo Cavalieri](https://github.com/giacomocavalieri))

## v1.9.0-rc1 - 2025-03-04

### Compiler
Expand Down
60 changes: 22 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ walkdir = "2"
# Enum trait impl macros
strum = { version = "0", features = ["derive"] }
# Hex package manager client
hexpm = "2"
hexpm = "3"
# Creation of tar file archives
tar = "0"
# gzip compression
Expand Down
2 changes: 1 addition & 1 deletion compiler-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gleam-cli"
version = "1.9.0-rc1"
version = "1.9.0-rc2"
authors = ["Louis Pilfold <[email protected]>"]
edition = "2024"
license-file = "LICENCE"
Expand Down
1 change: 1 addition & 0 deletions compiler-cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ struct TreeOptions {
#[derive(Parser, Debug)]
#[command(
version,
name = "gleam",
next_display_order = None,
help_template = "\
{before-help}{name} {version}
Expand Down
2 changes: 1 addition & 1 deletion compiler-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gleam-core"
version = "1.9.0-rc1"
version = "1.9.0-rc2"
authors = ["Louis Pilfold <[email protected]>"]
edition = "2024"
license-file = "LICENCE"
Expand Down
Loading

0 comments on commit 57ebc57

Please sign in to comment.