Skip to content

Commit

Permalink
Replace ~> with Semver Compatible Versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Pi-Cla authored and lpil committed Apr 18, 2024
1 parent c910b5a commit 813f6a7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions writing-gleam/gleam-toml.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ gleam = ">= 0.30.0"
# Uses the Hex version requirement format
# https://hexdocs.pm/elixir/Version.html#module-requirements
[dependencies]
gleam_stdlib = "~> 0.18"
gleam_erlang = "~> 0.2"
gleam_http = "~> 2.1"
gleam_stdlib = ">= 0.18.0 and < 0.19.0"
gleam_erlang = ">= 0.2.0 and < 0.3.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" }

Expand All @@ -79,8 +79,8 @@ 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"
gleam_bitwise = "~> 0.3"
gleeunit = ">= 0.3.0 and < 0.4.0"
gleam_bitwise = ">= 0.3.0 and < 0.4.0"

# Documentation specific configuration (optional)
[documentation]
Expand Down

0 comments on commit 813f6a7

Please sign in to comment.