diff --git a/CHANGELOG.md b/CHANGELOG.md index c109b006..cf51afd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 3.10.13 + +### Changed + +- Fix compatibility with maturin introducing a breaking change in 1.8.0 and +specify a fixed version of maturin. Projects relying on any previous version +being buildable from source by end users (via PEP 517) must upgrade to at +least this version. + + ## 3.10.12 ### Changed diff --git a/Cargo.lock b/Cargo.lock index e986a1e4..2a5f20e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -122,7 +122,7 @@ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" [[package]] name = "orjson" -version = "3.10.12" +version = "3.10.13" dependencies = [ "associative-cache", "bytecount", diff --git a/Cargo.toml b/Cargo.toml index 4a6213ec..b90a9519 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orjson" -version = "3.10.12" +version = "3.10.13" authors = ["ijl "] description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" edition = "2021" diff --git a/pyproject.toml b/pyproject.toml index ca8d1a80..f1c42170 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "orjson" -version = "3.10.12" +version = "3.10.13" repository = "https://github.com/ijl/orjson" requires-python = ">=3.8" classifiers = [