⭐️ A friendly language for building type-safe, scalable systems!

v1.11.1

Changed files
+26 -20
compiler-cli
compiler-core
compiler-wasm
gleam-bin
test-output
test-package-compiler
test-project-compiler
+12 -6
CHANGELOG.md
··· 4 4 5 5 ### Compiler 6 6 7 + ### Build tool 8 + 9 + ### Language server 10 + 11 + ### Formatter 12 + 13 + ### Bug fixes 14 + 15 + ## v1.11.1 - 2025-06-05 16 + 17 + ### Compiler 18 + 7 19 - The displaying of internal types in HTML documentation has been improved. 8 20 ([Louis Pilfold](https://github.com/lpil)) 9 21 10 22 - A warning is now emitted when the same module is imported 11 23 multiple times into the same module with different aliases. 12 24 ([Louis Pilfold](https://github.com/lpil)) 13 - 14 - ### Build tool 15 - 16 - ### Language server 17 - 18 - ### Formatter 19 25 20 26 ### Bug fixes 21 27
+7 -7
Cargo.lock
··· 1093 1093 1094 1094 [[package]] 1095 1095 name = "gleam" 1096 - version = "1.11.0" 1096 + version = "1.11.1" 1097 1097 dependencies = [ 1098 1098 "gleam-cli", 1099 1099 "static_vcruntime", ··· 1101 1101 1102 1102 [[package]] 1103 1103 name = "gleam-cli" 1104 - version = "1.11.0" 1104 + version = "1.11.1" 1105 1105 dependencies = [ 1106 1106 "async-trait", 1107 1107 "base16", ··· 1147 1147 1148 1148 [[package]] 1149 1149 name = "gleam-core" 1150 - version = "1.11.0" 1150 + version = "1.11.1" 1151 1151 dependencies = [ 1152 1152 "age", 1153 1153 "askama", ··· 1201 1201 1202 1202 [[package]] 1203 1203 name = "gleam-wasm" 1204 - version = "1.11.0" 1204 + version = "1.11.1" 1205 1205 dependencies = [ 1206 1206 "camino", 1207 1207 "console_error_panic_hook", ··· 3128 3128 3129 3129 [[package]] 3130 3130 name = "test-output" 3131 - version = "1.11.0" 3131 + version = "1.11.1" 3132 3132 dependencies = [ 3133 3133 "camino", 3134 3134 "gleam-cli", ··· 3139 3139 3140 3140 [[package]] 3141 3141 name = "test-package-compiler" 3142 - version = "1.11.0" 3142 + version = "1.11.1" 3143 3143 dependencies = [ 3144 3144 "camino", 3145 3145 "gleam-core", ··· 3153 3153 3154 3154 [[package]] 3155 3155 name = "test-project-compiler" 3156 - version = "1.11.0" 3156 + version = "1.11.1" 3157 3157 dependencies = [ 3158 3158 "camino", 3159 3159 "gleam-core",
+1 -1
compiler-cli/Cargo.toml
··· 1 1 [package] 2 2 name = "gleam-cli" 3 - version = "1.11.0" 3 + version = "1.11.1" 4 4 authors = ["Louis Pilfold <louis@lpil.uk>"] 5 5 edition = "2024" 6 6 license-file = "LICENCE"
+1 -1
compiler-core/Cargo.toml
··· 1 1 [package] 2 2 name = "gleam-core" 3 - version = "1.11.0" 3 + version = "1.11.1" 4 4 authors = ["Louis Pilfold <louis@lpil.uk>"] 5 5 edition = "2024" 6 6 license-file = "LICENCE"
+1 -1
compiler-wasm/Cargo.toml
··· 1 1 [package] 2 2 name = "gleam-wasm" 3 - version = "1.11.0" 3 + version = "1.11.1" 4 4 authors = ["Louis Pilfold <louis@lpil.uk>"] 5 5 edition = "2024" 6 6 license-file = "LICENCE"
+1 -1
gleam-bin/Cargo.toml
··· 1 1 [package] 2 2 name = "gleam" 3 - version = "1.11.0" 3 + version = "1.11.1" 4 4 authors = ["Louis Pilfold <louis@lpil.uk>"] 5 5 edition = "2024" 6 6 license-file = "LICENCE"
+1 -1
test-output/Cargo.toml
··· 1 1 [package] 2 2 name = "test-output" 3 - version = "1.11.0" 3 + version = "1.11.1" 4 4 authors = ["Louis Pilfold <louis@lpil.uk>"] 5 5 edition = "2024" 6 6 license = "Apache-2.0"
+1 -1
test-package-compiler/Cargo.toml
··· 1 1 [package] 2 2 name = "test-package-compiler" 3 - version = "1.11.0" 3 + version = "1.11.1" 4 4 authors = ["Louis Pilfold <louis@lpil.uk>"] 5 5 edition = "2024" 6 6 license = "Apache-2.0"
+1 -1
test-project-compiler/Cargo.toml
··· 1 1 [package] 2 2 name = "test-project-compiler" 3 - version = "1.11.0" 3 + version = "1.11.1" 4 4 authors = ["Louis Pilfold <louis@lpil.uk>"] 5 5 edition = "2024" 6 6 license = "Apache-2.0"