# HG changeset patch # User ijl <ijl@mailbox.org> # Date 1594678578 0 # Mon Jul 13 22:16:18 2020 +0000 # Node ID 25d0d125f5d28c737c3310adb54dcf4ea3b6639c # Parent bfde36265adde4fee511cd82e2ffe6e1420db72a 3.2.2 diff --git a/CHANGELOG.md b/CHANGELOG.md --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 3.2.2 - 2020-07-13 + +### Fixed + +- Fix serializing `dataclasses.dataclass` that have no attributes. + +### Changed + +- Improve deserialization performance of `str`. + ## 3.2.1 - 2020-07-03 ### Fixed diff --git a/Cargo.lock b/Cargo.lock --- a/Cargo.lock +++ b/Cargo.lock @@ -106,7 +106,7 @@ [[package]] name = "orjson" -version = "3.2.1" +version = "3.2.2" dependencies = [ "associative-cache", "bytecount", diff --git a/Cargo.toml b/Cargo.toml --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orjson" -version = "3.2.1" +version = "3.2.2" authors = ["ijl <ijl@mailbox.org>"] description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" edition = "2018"