diff --git a/CHANGELOG.md b/CHANGELOG.md index 02af18bc..91838485 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 2.0.7 - 2019-08-29 + +### Changed + +- Publish PEP 517 source distribution. + +### Fixed + +- `orjson.dumps()` raises `JSONEncodeError` on circular references. + ## 2.0.6 - 2019-05-11 ### Changed diff --git a/Cargo.lock b/Cargo.lock index d9b5235a..c81e12b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -128,7 +128,7 @@ dependencies = [ [[package]] name = "orjson" -version = "2.0.6" +version = "2.0.7" dependencies = [ "encoding_rs 0.8.17 (registry+https://github.com/rust-lang/crates.io-index)", "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index cf4a724f..cb20fc3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orjson" -version = "2.0.6" +version = "2.0.7" authors = ["ijl "] description = "Fast, correct Python JSON library" edition = "2018"