alpha
Login
or
Join now
nandi.uk
/
gleam
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Fork of daniellemaywood.uk/gleam — Wasm codegen work
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
v1.1.0
author
Louis Pilfold
date
2 years ago
(Apr 16, 2024, 5:57 PM +0100)
commit
431b9bb7
431b9bb7448c64e1a336ed04343190cfe1974638
parent
439c5596
439c5596f56988a7064eb76233bbd91ea6cad74e
+10
-10
6 changed files
Expand all
Collapse all
Unified
Split
CHANGELOG.md
Cargo.lock
compiler-cli
Cargo.toml
compiler-core
Cargo.toml
compiler-wasm
Cargo.toml
test-package-compiler
Cargo.toml
+2
-2
CHANGELOG.md
View file
Reviewed
···
1
1
# Changelog
2
2
3
3
-
### Unreleased
3
3
+
## v1.1.0 - 2024-04-16
4
4
5
5
-
## Formatter
5
5
+
### Formatter
6
6
7
7
- Fixed a bug where the first subject of a case expression clause would be
8
8
indented more than necessary.
+4
-4
Cargo.lock
View file
Reviewed
···
830
830
831
831
[[package]]
832
832
name = "gleam"
833
833
-
version = "1.1.0-rc3"
833
833
+
version = "1.1.0"
834
834
dependencies = [
835
835
"async-trait",
836
836
"atty",
···
878
878
879
879
[[package]]
880
880
name = "gleam-core"
881
881
-
version = "1.1.0-rc3"
881
881
+
version = "1.1.0"
882
882
dependencies = [
883
883
"askama",
884
884
"async-trait",
···
929
929
930
930
[[package]]
931
931
name = "gleam-wasm"
932
932
-
version = "1.1.0-rc3"
932
932
+
version = "1.1.0"
933
933
dependencies = [
934
934
"camino",
935
935
"console_error_panic_hook",
···
2255
2255
2256
2256
[[package]]
2257
2257
name = "test-package-compiler"
2258
2258
-
version = "1.1.0-rc3"
2258
2258
+
version = "1.1.0"
2259
2259
dependencies = [
2260
2260
"camino",
2261
2261
"gleam-core",
+1
-1
compiler-cli/Cargo.toml
View file
Reviewed
···
1
1
[package]
2
2
name = "gleam"
3
3
-
version = "1.1.0-rc3"
3
3
+
version = "1.1.0"
4
4
authors = ["Louis Pilfold <louis@lpil.uk>"]
5
5
edition = "2021"
6
6
license-file = "LICENCE"
+1
-1
compiler-core/Cargo.toml
View file
Reviewed
···
1
1
[package]
2
2
name = "gleam-core"
3
3
-
version = "1.1.0-rc3"
3
3
+
version = "1.1.0"
4
4
authors = ["Louis Pilfold <louis@lpil.uk>"]
5
5
edition = "2021"
6
6
license-file = "LICENCE"
+1
-1
compiler-wasm/Cargo.toml
View file
Reviewed
···
1
1
[package]
2
2
name = "gleam-wasm"
3
3
-
version = "1.1.0-rc3"
3
3
+
version = "1.1.0"
4
4
authors = ["Louis Pilfold <louis@lpil.uk>"]
5
5
edition = "2021"
6
6
license-file = "LICENCE"
+1
-1
test-package-compiler/Cargo.toml
View file
Reviewed
···
1
1
[package]
2
2
name = "test-package-compiler"
3
3
-
version = "1.1.0-rc3"
3
3
+
version = "1.1.0"
4
4
authors = ["Louis Pilfold <louis@lpil.uk>"]
5
5
edition = "2021"
6
6
license-file = "LICENCE"