From 61bdeb8d4c50921ea976cefff53da5856943fbd8 Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Sun, 4 Aug 2024 14:19:22 +0200 Subject: [PATCH] v1.4.1 --- CHANGELOG.md | 4 ++++ Cargo.lock | 8 ++++---- compiler-cli/Cargo.toml | 2 +- compiler-core/Cargo.toml | 2 +- compiler-wasm/Cargo.toml | 2 +- test-package-compiler/Cargo.toml | 2 +- 6 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64b5695b9e8..c45776c757a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ ### Bug Fixes +## v1.4.1 - 2024-08-04 + +### Bug Fixes + - Fix a bug that caused record accessors for private types to not be completed by the LSP, even when in the same module. ([Ameen Radwan](https://github.com/Acepie)) diff --git a/Cargo.lock b/Cargo.lock index f5b75bdefbc..96767a6348c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -793,7 +793,7 @@ checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" [[package]] name = "gleam" -version = "1.4.0" +version = "1.4.1" dependencies = [ "async-trait", "base16", @@ -840,7 +840,7 @@ dependencies = [ [[package]] name = "gleam-core" -version = "1.4.0" +version = "1.4.1" dependencies = [ "askama", "async-trait", @@ -891,7 +891,7 @@ dependencies = [ [[package]] name = "gleam-wasm" -version = "1.4.0" +version = "1.4.1" dependencies = [ "camino", "console_error_panic_hook", @@ -2259,7 +2259,7 @@ dependencies = [ [[package]] name = "test-package-compiler" -version = "1.4.0" +version = "1.4.1" dependencies = [ "camino", "gleam-core", diff --git a/compiler-cli/Cargo.toml b/compiler-cli/Cargo.toml index 69b80cd8326..0e53526d4ee 100644 --- a/compiler-cli/Cargo.toml +++ b/compiler-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gleam" -version = "1.4.0" +version = "1.4.1" authors = ["Louis Pilfold "] edition = "2021" license-file = "LICENCE" diff --git a/compiler-core/Cargo.toml b/compiler-core/Cargo.toml index 9aada4f5f9e..368fc260700 100644 --- a/compiler-core/Cargo.toml +++ b/compiler-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gleam-core" -version = "1.4.0" +version = "1.4.1" authors = ["Louis Pilfold "] edition = "2021" license-file = "LICENCE" diff --git a/compiler-wasm/Cargo.toml b/compiler-wasm/Cargo.toml index 9571601409f..548c21b0684 100644 --- a/compiler-wasm/Cargo.toml +++ b/compiler-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gleam-wasm" -version = "1.4.0" +version = "1.4.1" authors = ["Louis Pilfold "] edition = "2021" license-file = "LICENCE" diff --git a/test-package-compiler/Cargo.toml b/test-package-compiler/Cargo.toml index 11535770859..0e28dc9ad84 100644 --- a/test-package-compiler/Cargo.toml +++ b/test-package-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-package-compiler" -version = "1.4.0" +version = "1.4.1" authors = ["Louis Pilfold "] edition = "2021" license-file = "LICENCE"