Skip to content

Commit 0fc4a4c

Browse files
committed
v1.15.2
1 parent 4dd6b06 commit 0fc4a4c

11 files changed

Lines changed: 26 additions & 22 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@
1212

1313
### Bug fixes
1414

15+
## v1.15.2 - 2026-03-19
16+
17+
### Bug fixes
18+
19+
- Fixed a bug where the "Add missing type parameter" code action could be
20+
triggered on types that do not exist instead of type variables.
21+
([Giacomo Cavalieri](https://github.com/giacomocavalieri))
22+
1523
- Fixed a bug where `BitArray$BitArray$data` constructed a `DataView` with
1624
incorrect byte length instead of the slice's actual size, causing sliced bit
1725
arrays to include extra bytes from the underlying buffer on JavaScript.
@@ -25,7 +33,3 @@
2533
offset 0 instead of the slice's actual byte offset, causing sliced bit arrays
2634
to read from the wrong position in the underlying buffer on JavaScript.
2735
([John Downey](https://github.com/jtdowney))
28-
29-
- Fixed a bug where the "Add missing type parameter" code action could be
30-
triggered on types that do not exist instead of type variables.
31-
([Giacomo Cavalieri](https://github.com/giacomocavalieri))

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

compiler-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gleam-cli"
3-
version = "1.15.1"
3+
version = "1.15.2"
44
authors = ["Louis Pilfold <louis@lpil.uk>"]
55
edition = "2024"
66
license = "Apache-2.0"

compiler-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gleam-core"
3-
version = "1.15.1"
3+
version = "1.15.2"
44
authors = ["Louis Pilfold <louis@lpil.uk>"]
55
edition = "2024"
66
license = "Apache-2.0"

compiler-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gleam-wasm"
3-
version = "1.15.1"
3+
version = "1.15.2"
44
authors = ["Louis Pilfold <louis@lpil.uk>"]
55
edition = "2024"
66
license = "Apache-2.0"

gleam-bin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gleam"
3-
version = "1.15.1"
3+
version = "1.15.2"
44
authors = ["Louis Pilfold <louis@lpil.uk>"]
55
edition = "2024"
66
license = "Apache-2.0"

hexpm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hexpm"
3-
version = "1.15.1"
3+
version = "1.15.2"
44
authors = ["Louis Pilfold <louis@lpil.uk>"]
55
edition = "2024"
66
license = "Apache-2.0"

language-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gleam-language-server"
3-
version = "1.15.1"
3+
version = "1.15.2"
44
authors = ["Louis Pilfold <louis@lpil.uk>"]
55
edition = "2024"
66
license = "Apache-2.0"

test-output/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-output"
3-
version = "1.15.1"
3+
version = "1.15.2"
44
authors = ["Louis Pilfold <louis@lpil.uk>"]
55
edition = "2024"
66
license = "Apache-2.0"

test-package-compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-package-compiler"
3-
version = "1.15.1"
3+
version = "1.15.2"
44
authors = ["Louis Pilfold <louis@lpil.uk>"]
55
edition = "2024"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)