Skip to content

Commit d303aa3

Browse files
committed
v3.1.0
1 parent afa50c1 commit d303aa3

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v3.1.0 - 2025-11-08
4+
5+
- Updated for Gleam v1.13.0.
6+
37
## v3.0.2 - 2025-07-01
48

59
- Updated for lastest `gleam_stdlib`.

gleam.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "gleam_json"
2-
version = "3.0.2"
2+
version = "3.1.0"
33
gleam = ">= 1.13.0"
44

55
licences = ["Apache-2.0"]

src/gleam_json_ffi.mjs

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1-
import { Result$Ok, Result$Error, List$isNonEmpty, List$NonEmpty$first, List$NonEmpty$rest } from "./gleam.mjs";
2-
import { DecodeError$UnexpectedByte, DecodeError$UnexpectedEndOfInput } from "./gleam/json.mjs";
1+
import {
2+
Result$Ok,
3+
Result$Error,
4+
List$isNonEmpty,
5+
List$NonEmpty$first,
6+
List$NonEmpty$rest,
7+
} from "./gleam.mjs";
8+
import {
9+
DecodeError$UnexpectedByte,
10+
DecodeError$UnexpectedEndOfInput,
11+
} from "./gleam/json.mjs";
312

413
export function json_to_string(json) {
514
return JSON.stringify(json);

0 commit comments

Comments
 (0)