diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c7871ad..82c988c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 3.8.7 - 2023-02-28 + +### Fixed + +- Use serialization backend introduced in 3.8.4 only on well-tested +platforms such as glibc, macOS by default. + ## 3.8.6 - 2023-02-09 ### Fixed @@ -11,7 +18,7 @@ - Make `python-dateutil` optional in tests. - Handle failure to load system timezones in tests. -## 3.8.5 - 2023-01-04 +## 3.8.5 - 2023-01-10 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 88fd9abb..80782dfa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,7 +156,7 @@ checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" [[package]] name = "orjson" -version = "3.8.6" +version = "3.8.7" dependencies = [ "ahash", "arrayvec", diff --git a/Cargo.toml b/Cargo.toml index c50b5cf3..af79250f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orjson" -version = "3.8.6" +version = "3.8.7" authors = ["ijl "] description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" edition = "2021"