Skip to content

Commit f972cae

Browse files
committed
Bump canonical_json version to 0.3.0
1 parent 4aa0ab2 commit f972cae

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

Cargo.lock

+9-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "canonicaljson-rs"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Mathieu Leplatre <[email protected]>"]
55
edition = "2018"
66
description = "Python bindings for canonical_json"
@@ -14,7 +14,7 @@ crate-type = ["cdylib"]
1414
[dependencies]
1515
serde = "1.0"
1616
serde_json = "1.0"
17-
canonical_json = "0.2.0"
17+
canonical_json = "0.3.0"
1818

1919
[dependencies.pyo3]
2020
version = "0.11"

tests/test_dumps.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
(10.0**21, '1E21'),
2121
("1\n 2 \t \b\f", '"1\\n 2 \\t \\b\\f"'),
2222
("\xff I ❤ testing", r'"\u00ff I \u2764 testing"'),
23+
("𝄞", r'"\ud834\udd1e"'),
2324
(r" \" ", r'" \\\" "'),
2425
]
2526

0 commit comments

Comments
 (0)