Skip to content

Commit

Permalink
v4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Feb 6, 2025
1 parent 86edcd3 commit 9dc091d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v4.0.1 - 2025-02-06

- Relaxed the `gleam_http` requirement.

## v4.0.0 - 2024-11-10

- The `HttpError` type has been introduced and is now used by the send
Expand Down
8 changes: 4 additions & 4 deletions gleam.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "gleam_httpc"
version = "4.0.0"
version = "4.0.1"
gleam = ">= 1.0.0"

licences = ["Apache-2.0"]
Expand All @@ -15,9 +15,9 @@ links = [
extra_applications = ["inets", "ssl"]

[dependencies]
gleam_stdlib = "~> 0.32 or ~> 1.0"
gleam_http = "~> 3.0"
gleam_stdlib = ">= 0.32.0 and < 2.0.0"
gleam_http = ">= 3.0.0 and < 5.0.0"
gleam_erlang = ">= 0.27.0 and < 1.0.0"

[dev-dependencies]
gleeunit = "~> 1.0"
gleeunit = ">= 1.0.0 and < 2.0.0"
10 changes: 5 additions & 5 deletions manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

packages = [
{ name = "gleam_erlang", version = "0.27.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_erlang", source = "hex", outer_checksum = "DE468F676D71B313C6C8C5334425CFCF827837333F8AB47B64D8A6D7AA40185D" },
{ name = "gleam_http", version = "3.5.3", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_http", source = "hex", outer_checksum = "C2FC3322203B16F897C1818D9810F5DEFCE347F0751F3B44421E1261277A7373" },
{ name = "gleam_http", version = "3.7.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_http", source = "hex", outer_checksum = "A9EE0722106FCCAB8AD3BF9D0A3EFF92BFE8561D59B83BAE96EB0BE1938D4E0F" },
{ name = "gleam_stdlib", version = "0.34.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "1FB8454D2991E9B4C0C804544D8A9AD0F6184725E20D63C3155F0AEB4230B016" },
{ name = "gleeunit", version = "1.0.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "D364C87AFEB26BDB4FB8A5ABDE67D635DC9FA52D6AB68416044C35B096C6882D" },
{ name = "gleeunit", version = "1.3.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "0E6C83834BA65EDCAAF4FE4FB94AC697D9262D83E6F58A750D63C9F6C8A9D9FF" },
]

[requirements]
gleam_erlang = { version = ">= 0.27.0 and < 1.0.0" }
gleam_http = { version = "~> 3.0" }
gleam_stdlib = { version = "~> 0.32 or ~> 1.0" }
gleeunit = { version = "~> 1.0" }
gleam_http = { version = ">= 3.0.0 and < 5.0.0" }
gleam_stdlib = { version = ">= 0.32.0 and < 2.0.0" }
gleeunit = { version = ">= 1.0.0 and < 2.0.0" }

0 comments on commit 9dc091d

Please sign in to comment.