From 20df18596a835eeed9305a078639d0b8fdc0ebe8 Mon Sep 17 00:00:00 2001 From: Catherine Olsson Date: Thu, 16 Jan 2025 15:37:35 -0800 Subject: [PATCH] Update version to post2 and correct authorship --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 4 ++-- pyproject.toml | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) 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..2735132b 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 = 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 = [