Skip to content

Commit 42beaf0

Browse files
committed
Updates for Gleam V1
1 parent 80e341a commit 42beaf0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: erlef/setup-beam@v1
1414
with:
1515
otp-version: "26.0.2"
16-
gleam-version: "0.33.0"
16+
gleam-version: "0.34.1"
1717
rebar3-version: "3"
1818
- run: gleam format --check src test
1919
- run: gleam deps download

gleam.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
name = "falcon"
2-
version = "1.0.0"
2+
version = "1.0.1"
33
gleam = ">= 0.33.0"
44

55
# Fill out these fields if you intend to generate HTML documentation or publish
66
# your project to the Hex package manager.
77
#
8-
description = "A smoother way to send HTTP requests in Gleam, an abstraction over Hackney - see the readme for important notes!"
8+
description = "A smoother way to send HTTP requests in Gleam with Axios-like APIs; an abstraction over Hackney."
99
licences = ["Apache-2.0"]
1010
repository = { type = "github", user = "trulyao", repo = "falcon" }
1111
# links = [{ title = "Website", href = "https://gleam.run" }]
1212

1313
[dependencies]
14-
gleam_stdlib = "~> 0.34"
14+
gleam_stdlib = "~> 0.34 or ~> 1.0"
1515
gleam_http = "~> 3.5"
1616
hackney = "~> 1.20"
1717
gleam_json = "~> 0.7"

manifest.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages = [
77
{ name = "gleam_json", version = "0.7.0", build_tools = ["gleam"], requirements = ["thoas", "gleam_stdlib"], otp_app = "gleam_json", source = "hex", outer_checksum = "CB405BD93A8828BCD870463DE29375E7B2D252D9D124C109E5B618AAC00B86FC" },
88
{ name = "gleam_stdlib", version = "0.34.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "1FB8454D2991E9B4C0C804544D8A9AD0F6184725E20D63C3155F0AEB4230B016" },
99
{ name = "gleeunit", version = "1.0.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "D364C87AFEB26BDB4FB8A5ABDE67D635DC9FA52D6AB68416044C35B096C6882D" },
10-
{ name = "hackney", version = "1.20.1", build_tools = ["rebar3"], requirements = ["unicode_util_compat", "mimerl", "idna", "certifi", "parse_trans", "metrics", "ssl_verify_fun"], otp_app = "hackney", source = "hex", outer_checksum = "FE9094E5F1A2A2C0A7D10918FEE36BFEC0EC2A979994CFF8CFE8058CD9AF38E3" },
10+
{ name = "hackney", version = "1.20.1", build_tools = ["rebar3"], requirements = ["metrics", "mimerl", "ssl_verify_fun", "certifi", "parse_trans", "unicode_util_compat", "idna"], otp_app = "hackney", source = "hex", outer_checksum = "FE9094E5F1A2A2C0A7D10918FEE36BFEC0EC2A979994CFF8CFE8058CD9AF38E3" },
1111
{ name = "idna", version = "6.1.1", build_tools = ["rebar3"], requirements = ["unicode_util_compat"], otp_app = "idna", source = "hex", outer_checksum = "92376EB7894412ED19AC475E4A86F7B413C1B9FBB5BD16DCCD57934157944CEA" },
1212
{ name = "metrics", version = "1.0.1", build_tools = ["rebar3"], requirements = [], otp_app = "metrics", source = "hex", outer_checksum = "69B09ADDDC4F74A40716AE54D140F93BEB0FB8978D8636EADED0C31B6F099F16" },
1313
{ name = "mimerl", version = "1.2.0", build_tools = ["rebar3"], requirements = [], otp_app = "mimerl", source = "hex", outer_checksum = "F278585650AA581986264638EBF698F8BB19DF297F66AD91B18910DFC6E19323" },
@@ -20,6 +20,6 @@ packages = [
2020
[requirements]
2121
gleam_http = { version = "~> 3.5" }
2222
gleam_json = { version = "~> 0.7" }
23-
gleam_stdlib = { version = "~> 0.34" }
23+
gleam_stdlib = { version = "~> 0.34 or ~> 1.0" }
2424
gleeunit = { version = "~> 1.0" }
2525
hackney = { version = "~> 1.20" }

0 commit comments

Comments
 (0)