diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b1c16c3..45f2b71e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Changelog +## 3.9.14 - 2024-02-14 + +### Fixed + +- Fix crash serializing `str` introduced in 3.9.11. + +### Changed + +- Build now depends on Rust 1.72 or later. + + ## 3.9.13 - 2024-02-03 ### Fixed @@ -13,6 +24,7 @@ - Publish `musllinux_1_2` instead of `musllinux_1_1` wheels. - Serialization uses small integer optimization in CPython 3.12 or later. + ## 3.9.12 - 2024-01-18 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 829472f0..e8a171da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -193,7 +193,7 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "orjson" -version = "3.9.13" +version = "3.9.14" dependencies = [ "ahash", "arrayvec", diff --git a/Cargo.toml b/Cargo.toml index 68fae48c..5f675fc9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orjson" -version = "3.9.13" +version = "3.9.14" authors = ["ijl "] description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" edition = "2021"