aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2024-01-16 13:04:04 +0000
committerLouis Pilfold <louis@lpil.uk>2024-01-16 13:05:16 +0000
commit7807b85b57c1cc05df76bd0f228a7d61bbe1856e (patch)
tree76f6f04cfe5c9bc6133e629fb92e55622588f43b
parentc3e9708e0ac6b4e2f5892dd7bc53e96ece9468d5 (diff)
downloadgleam_json-7807b85b57c1cc05df76bd0f228a7d61bbe1856e.tar.gz
gleam_json-7807b85b57c1cc05df76bd0f228a7d61bbe1856e.zip
v1.0.0v1.0.0
-rw-r--r--CHANGELOG.md4
-rw-r--r--gleam.toml4
-rw-r--r--manifest.toml6
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.
diff --git a/gleam.toml b/gleam.toml
index b4f9dd3..baaa597 100644
--- a/gleam.toml
+++ b/gleam.toml
@@ -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" }