Bump deps

This commit is contained in:
Mikko Ahlroth 2024-03-02 14:25:35 +02:00
parent c3307c044c
commit b47ab34f58
4 changed files with 15 additions and 9 deletions

View file

@ -1,2 +1,2 @@
gleam 0.33.0
gleam 0.34.1
nodejs 20.10.0

View file

@ -1,3 +1,9 @@
3.0.0
-----
* Updated for Gleam 1.0.0.
* Bumped gleam_json dependency to 1.0.0.
2.0.0
-----

View file

@ -1,8 +1,8 @@
name = "varasto"
version = "2.0.0"
version = "3.0.0"
description = "Typed access to LocalStorage/SessionStorage in Gleam"
target = "javascript"
gleam = ">= 0.33.0"
gleam = "~> 0.34.1 or ~> 1.0.0"
# Fill out these fields if you intend to generate HTML documentation or publish
# your project to the Hex package manager.
@ -14,7 +14,7 @@ links = []
[dependencies]
gleam_stdlib = "~> 0.34"
plinth = ">= 0.1.2"
gleam_json = "~> 0.6"
gleam_json = "~> 1.0"
[dev-dependencies]
gleeunit = "~> 1.0"

View file

@ -2,16 +2,16 @@
# You typically do not need to edit this file
packages = [
{ name = "gleam_javascript", version = "0.7.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_javascript", source = "hex", outer_checksum = "B5E05F479C52217C02BA2E8FC650A716BFB62D4F8D20A90909C908598E12FBE0" },
{ name = "gleam_json", version = "0.7.0", build_tools = ["gleam"], requirements = ["thoas", "gleam_stdlib"], otp_app = "gleam_json", source = "hex", outer_checksum = "CB405BD93A8828BCD870463DE29375E7B2D252D9D124C109E5B618AAC00B86FC" },
{ name = "gleam_stdlib", version = "0.34.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "1FB8454D2991E9B4C0C804544D8A9AD0F6184725E20D63C3155F0AEB4230B016" },
{ name = "gleam_javascript", version = "0.8.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleam_javascript", source = "hex", outer_checksum = "14D5B7E1A70681E0776BF0A0357F575B822167960C844D3D3FA114D3A75F05A8" },
{ name = "gleam_json", version = "1.0.0", build_tools = ["gleam"], requirements = ["thoas", "gleam_stdlib"], otp_app = "gleam_json", source = "hex", outer_checksum = "8B197DD5D578EA6AC2C0D4BDC634C71A5BCA8E7DB5F47091C263ECB411A60DF3" },
{ name = "gleam_stdlib", version = "0.36.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "C0D14D807FEC6F8A08A7C9EF8DFDE6AE5C10E40E21325B2B29365965D82EB3D4" },
{ name = "gleeunit", version = "1.0.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "D364C87AFEB26BDB4FB8A5ABDE67D635DC9FA52D6AB68416044C35B096C6882D" },
{ name = "plinth", version = "0.1.6", build_tools = ["gleam"], requirements = ["gleam_stdlib", "gleam_javascript", "gleam_json"], otp_app = "plinth", source = "hex", outer_checksum = "EAF2A3229F618C6831B6AE23E9DB7DA793C9D4453CC7C40D6E6FE16F1E2524B5" },
{ name = "plinth", version = "0.1.5", build_tools = ["gleam"], requirements = ["gleam_stdlib", "gleam_javascript"], otp_app = "plinth", source = "hex", outer_checksum = "822FE76847D4D506EB740C5F7C61EC509EC6100677FF025FCCACC08F3A33A125" },
{ name = "thoas", version = "0.4.1", build_tools = ["rebar3"], requirements = [], otp_app = "thoas", source = "hex", outer_checksum = "4918D50026C073C4AB1388437132C77A6F6F7C8AC43C60C13758CC0ADCE2134E" },
]
[requirements]
gleam_json = { version = "~> 0.6" }
gleam_json = { version = "~> 1.0" }
gleam_stdlib = { version = "~> 0.34" }
gleeunit = { version = "~> 1.0" }
plinth = { version = ">= 0.1.2" }