From 3be7253a6fc10793049ec1b3b646d1350c763ab0 Mon Sep 17 00:00:00 2001 From: ijl Date: Sat, 19 Oct 2024 15:20:49 +0000 Subject: [PATCH] 3.10.8 --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81391742..b77b2ada 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog +### 3.10.8 + +### Changed + +- `int` serialization no longer chains `OverflowError` to the +the `__cause__` attribute of `orjson.JSONEncodeError` when range exceeded. +- Compatibility with CPython 3.14 alpha 1. +- Improve performance. + + ## 3.10.7 - 2024-08-08 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 779dfc76..86a0c3c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -145,7 +145,7 @@ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" [[package]] name = "orjson" -version = "3.10.7" +version = "3.10.8" dependencies = [ "arrayvec", "associative-cache", diff --git a/Cargo.toml b/Cargo.toml index bab6f081..14223e3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orjson" -version = "3.10.7" +version = "3.10.8" authors = ["ijl "] description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" edition = "2021"