From d213277935d350fd84165b24e6cbbff3262b6dff Mon Sep 17 00:00:00 2001 From: ijl Date: Wed, 16 Aug 2023 15:07:08 +0000 Subject: [PATCH] 3.9.5 --- 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 4fc24809..265f9788 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog + +## 3.9.5 - 2023-08-16 + +### Fixed + +- Remove futex from module import and initialization path. + + ## 3.9.4 - 2023-08-07 ### Fixed @@ -8,6 +16,7 @@ - Fix non-release builds of orjson copying large deserialization buffer from stack to heap. This was introduced in 3.9.3. + ## 3.9.3 - 2023-08-06 ### Fixed @@ -18,6 +27,7 @@ from stack to heap. This was introduced in 3.9.3. - Support i686/x86 32-bit Python installs on Windows. + ## 3.9.2 - 2023-07-07 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 195f7b37..8cdeaed6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -171,7 +171,7 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "orjson" -version = "3.9.4" +version = "3.9.5" dependencies = [ "ahash", "arrayvec", diff --git a/Cargo.toml b/Cargo.toml index e8235b4e..d6e1c8ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orjson" -version = "3.9.4" +version = "3.9.5" authors = ["ijl "] description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" edition = "2021"