diff --git a/CHANGELOG.md b/CHANGELOG.md index cf51afd2..9886290e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog + +## 3.10.14 + +### Changed + +- Specify build system dependency on `maturin>=1,<2` again. +- Allocate memory using `PyMem_Malloc()` and similar APIs for integration +with pymalloc, mimalloc, and tracemalloc. +- Source distribution does not ship compressed test documents and relevant +tests skip if fixtures are not present. +- Build now depends on Rust 1.82 or later instead of 1.72. + + ## 3.10.13 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 83e3e362..f2a96991 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -127,7 +127,7 @@ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" [[package]] name = "orjson" -version = "3.10.13" +version = "3.10.14" dependencies = [ "associative-cache", "bytecount", diff --git a/Cargo.toml b/Cargo.toml index 84603d5b..d420f94c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orjson" -version = "3.10.13" +version = "3.10.14" authors = ["ijl "] description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" edition = "2021" diff --git a/pyproject.toml b/pyproject.toml index 656ad360..12a1bb9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "orjson" -version = "3.10.13" +version = "3.10.14" repository = "https://github.com/ijl/orjson" requires-python = ">=3.8" classifiers = [