diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ef7add2..b3057e0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 3.10.14-post2 + +### Fixed + +- Updated tests to correctly expect NaN/Infinity support and overflow handling +- Fix behavior on 0-dimensional arrays/tensors +- Fix behavior where Infinity/NaN were incorrectly being written as strings + ## 3.10.14-post1 ### Added diff --git a/Cargo.lock b/Cargo.lock index 56a5865c..3afb3073 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -127,7 +127,7 @@ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" [[package]] name = "orjson" -version = "3.10.14-post1" +version = "3.10.14-post2" dependencies = [ "associative-cache", "bytecount", diff --git a/Cargo.toml b/Cargo.toml index 27304c5e..363db350 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "orjson" -version = "3.10.14-post1" -authors = ["ijl "] +version = "3.10.14-post2" +authors = ["ijl ", "nova ", "gbm ", "catherio "] description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" edition = "2021" resolver = "2" diff --git a/pyproject.toml b/pyproject.toml index d7577cb6..1be2af69 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "orjson" -version = "3.10.14-post1" +version = "3.10.14-post2" repository = "https://github.com/ijl/orjson" requires-python = ">=3.8" classifiers = [