diff options
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | gleam.toml | 4 | ||||
-rw-r--r-- | manifest.toml | 6 |
3 files changed, 9 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 58877bc..38657c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.0.0 - 2024-01-16 + +- Relaxed stdlib version requirement. + ## v0.7.0 - 2023-11-05 - Updated for Gleam v0.32.0. @@ -1,5 +1,5 @@ name = "gleam_json" -version = "0.7.0" +version = "1.0.0" gleam = ">= 0.32.0" licences = ["Apache-2.0"] @@ -12,7 +12,7 @@ links = [ ] [dependencies] -gleam_stdlib = "~> 0.19" +gleam_stdlib = "~> 0.19 or ~> 1.0" thoas = "~> 0.2" [dev-dependencies] diff --git a/manifest.toml b/manifest.toml index 518a5fe..0b54444 100644 --- a/manifest.toml +++ b/manifest.toml @@ -2,12 +2,12 @@ # You typically do not need to edit this file packages = [ - { name = "gleam_stdlib", version = "0.32.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "07D64C26D014CF570F8ACADCE602761EA2E74C842D26F2FD49B0D61973D9966F" }, - { name = "gleeunit", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "D3682ED8C5F9CAE1C928F2506DE91625588CC752495988CBE0F5653A42A6F334" }, + { 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 = "thoas", version = "0.4.1", build_tools = ["rebar3"], requirements = [], otp_app = "thoas", source = "hex", outer_checksum = "4918D50026C073C4AB1388437132C77A6F6F7C8AC43C60C13758CC0ADCE2134E" }, ] [requirements] -gleam_stdlib = { version = "~> 0.19" } +gleam_stdlib = { version = "~> 0.19 or ~> 1.0" } gleeunit = { version = "~> 1.0" } thoas = { version = "~> 0.2" } |