From ee8759c9fb6b709743fb8a15f39f10aa0c909e06 Mon Sep 17 00:00:00 2001 From: ijl Date: Fri, 7 Jul 2023 15:03:40 +0000 Subject: [PATCH] 3.9.2 --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cbbda0ee..bb8dfd4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog +## 3.9.2 - 2023-07-07 + +### Fixed + +- Fix the `__cause__` exception on `orjson.JSONEncodeError` possibly being +denormalized, i.e., of type `str` instead of `Exception`. + + ## 3.9.1 - 2023-06-09 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 878cbb9a..5278e8e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -154,7 +154,7 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "orjson" -version = "3.9.1" +version = "3.9.2" dependencies = [ "ahash", "arrayvec", diff --git a/Cargo.toml b/Cargo.toml index c9d297f8..6d756f22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orjson" -version = "3.9.1" +version = "3.9.2" authors = ["ijl "] description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" edition = "2021"