Skip to content

Commit 068a9f3

Browse files
committed
bump snag dep
1 parent 4d3ffbc commit 068a9f3

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

gleam.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "gladvent"
2-
version = "2.0.1"
2+
version = "2.0.2"
33
repository = { type = "github", user = "TanklesXL", repo = "gladvent" }
44
description = "An Advent Of Code runner for gleam"
55
licences = ["Apache-2.0"]
@@ -14,9 +14,9 @@ shellout = "~> 1.6"
1414
gleam_package_interface = "~> 1.0"
1515
spinner = "~> 1.1"
1616
gleam_stdlib = "~> 0.39 or ~> 1.0"
17-
gleam_otp = "~> 0.4"
18-
gleam_erlang = "~> 0.7"
19-
snag = "~> 0.2"
17+
gleam_otp = "~> 0.4 or ~> 1.0"
18+
gleam_erlang = "~> 0.7 or ~> 1.0"
19+
snag = "~> 1.0"
2020
parallel_map = ">= 2.0.0 and < 3.0.0"
2121
filepath = ">= 1.0.0 and < 2.0.0"
2222
tom = ">= 1.0.0 and < 2.0.0"

manifest.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ packages = [
1414
{ name = "gleam_stdlib", version = "0.43.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "69EF22E78FDCA9097CBE7DF91C05B2A8B5436826D9F66680D879182C0860A747" },
1515
{ name = "glearray", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "glearray", source = "hex", outer_checksum = "B99767A9BC63EF9CC8809F66C7276042E5EFEACAA5B25188B552D3691B91AC6D" },
1616
{ name = "gleeunit", version = "1.2.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "F7A7228925D3EE7D0813C922E062BFD6D7E9310F0BEE585D3A42F3307E3CFD13" },
17-
{ name = "glint", version = "1.1.0", build_tools = ["gleam"], requirements = ["gleam_community_ansi", "gleam_community_colour", "gleam_stdlib", "snag"], otp_app = "glint", source = "hex", outer_checksum = "A3F1B7C665FD216BE6A886D56537F0E095FB07DF62146074109270B798F8CEC4" },
17+
{ name = "glint", version = "1.1.1", build_tools = ["gleam"], requirements = ["gleam_community_ansi", "gleam_community_colour", "gleam_stdlib", "snag"], otp_app = "glint", source = "hex", outer_checksum = "5F6720081150AED8023131B0F3A35F9B0D6426A96CE02BEC52AD7018DF70566A" },
1818
{ name = "parallel_map", version = "2.1.0", build_tools = ["gleam"], requirements = ["gleam_erlang", "gleam_otp", "gleam_stdlib"], otp_app = "parallel_map", source = "hex", outer_checksum = "DE2BA9878728EF9EE34BE83FEDC7A18A1ABE4B2AC1E79C710E3E5D95F5E73404" },
1919
{ name = "repeatedly", version = "2.1.2", build_tools = ["gleam"], requirements = [], otp_app = "repeatedly", source = "hex", outer_checksum = "93AE1938DDE0DC0F7034F32C1BF0D4E89ACEBA82198A1FE21F604E849DA5F589" },
2020
{ name = "shellout", version = "1.6.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "shellout", source = "hex", outer_checksum = "E2FCD18957F0E9F67E1F497FC9FF57393392F8A9BAEAEA4779541DE7A68DD7E0" },
2121
{ name = "simplifile", version = "2.2.0", build_tools = ["gleam"], requirements = ["filepath", "gleam_stdlib"], otp_app = "simplifile", source = "hex", outer_checksum = "0DFABEF7DC7A9E2FF4BB27B108034E60C81BEBFCB7AB816B9E7E18ED4503ACD8" },
22-
{ name = "snag", version = "0.3.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "snag", source = "hex", outer_checksum = "54D32E16E33655346AA3E66CBA7E191DE0A8793D2C05284E3EFB90AD2CE92BCC" },
22+
{ name = "snag", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "snag", source = "hex", outer_checksum = "08E9EB87C413457DB1DD66CD704C6878DACC9C93B418600F63873D0CD224E756" },
2323
{ name = "spinner", version = "1.2.0", build_tools = ["gleam"], requirements = ["gleam_community_ansi", "gleam_stdlib", "glearray", "repeatedly"], otp_app = "spinner", source = "hex", outer_checksum = "9EE43AA33BE2DA5731B8F3F170AAB59AF1A815AFA5BF615F12C1B91F3B03F157" },
2424
{ name = "tom", version = "1.1.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "tom", source = "hex", outer_checksum = "228E667239504B57AD05EC3C332C930391592F6C974D0EFECF32FFD0F3629A27" },
2525
]
@@ -28,16 +28,16 @@ packages = [
2828
argv = { version = "~> 1.0" }
2929
decode = { version = ">= 0.2.0 and < 1.0.0" }
3030
filepath = { version = ">= 1.0.0 and < 2.0.0" }
31-
gleam_erlang = { version = "~> 0.7" }
31+
gleam_erlang = { version = "~> 0.7 or ~> 1.0" }
3232
gleam_json = { version = ">= 1.0.0 and < 3.0.0" }
33-
gleam_otp = { version = "~> 0.4" }
33+
gleam_otp = { version = "~> 0.4 or ~> 1.0" }
3434
gleam_package_interface = { version = "~> 1.0" }
3535
gleam_stdlib = { version = "~> 0.39 or ~> 1.0" }
3636
gleeunit = { version = ">= 1.2.0 and < 2.0.0" }
3737
glint = { version = ">=1.0.0 and < 2.0.0" }
3838
parallel_map = { version = ">= 2.0.0 and < 3.0.0" }
3939
shellout = { version = "~> 1.6" }
4040
simplifile = { version = "~> 2.0" }
41-
snag = { version = "~> 0.2" }
41+
snag = { version = "~> 1.0" }
4242
spinner = { version = "~> 1.1" }
4343
tom = { version = ">= 1.0.0 and < 2.0.0" }

0 commit comments

Comments
 (0)