From 83848d5beb6edf661f1cf3357acf86d5e26a324e Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Thu, 18 Apr 2024 18:54:48 +0100 Subject: [PATCH] Correct versions --- writing-gleam/gleam-toml.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/writing-gleam/gleam-toml.md b/writing-gleam/gleam-toml.md index 023857c1..f156bf78 100644 --- a/writing-gleam/gleam-toml.md +++ b/writing-gleam/gleam-toml.md @@ -68,8 +68,8 @@ gleam = ">= 0.30.0" # Uses the Hex version requirement format # https://hexdocs.pm/elixir/Version.html#module-requirements [dependencies] -gleam_stdlib = ">= 0.18.0 and < 0.19.0" -gleam_erlang = ">= 0.2.0 and < 0.3.0" +gleam_stdlib = ">= 0.18.0 and < 2.0.0" +gleam_erlang = ">= 0.2.0 and < 2.0.0" gleam_http = ">= 2.1.0 and < 3.0.0" # Local dependencies can be specified with a path my_other_project = { path = "../my_other_project" } @@ -79,8 +79,7 @@ my_other_project = { path = "../my_other_project" } # This table cannot include any packages that are already found in the # `dependencies` table. [dev-dependencies] -gleeunit = ">= 0.3.0 and < 0.4.0" -gleam_bitwise = ">= 0.3.0 and < 0.4.0" +gleeunit = ">= 1.0.0 and < 2.0.0" # Documentation specific configuration (optional) [documentation]