Skip to content

Commit

Permalink
Bump canonical_json version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leplatrem committed Nov 3, 2020
1 parent 4aa0ab2 commit f972cae
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
11 changes: 9 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "canonicaljson-rs"
version = "0.2.0"
version = "0.3.0"
authors = ["Mathieu Leplatre <[email protected]>"]
edition = "2018"
description = "Python bindings for canonical_json"
Expand All @@ -14,7 +14,7 @@ crate-type = ["cdylib"]
[dependencies]
serde = "1.0"
serde_json = "1.0"
canonical_json = "0.2.0"
canonical_json = "0.3.0"

[dependencies.pyo3]
version = "0.11"
Expand Down
1 change: 1 addition & 0 deletions tests/test_dumps.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
(10.0**21, '1E21'),
("1\n 2 \t \b\f", '"1\\n 2 \\t \\b\\f"'),
("\xff I ❤ testing", r'"\u00ff I \u2764 testing"'),
("𝄞", r'"\ud834\udd1e"'),
(r" \" ", r'" \\\" "'),
]

Expand Down

0 comments on commit f972cae

Please sign in to comment.