diff --git a/CHANGELOG.md b/CHANGELOG.md index 256db77f..e9398a59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 3.6.1 - 2021-08-04 + +### Changed + +- `orjson` now includes a `pyi` type stubs file. +- Publish manylinux_2_24 wheels instead of manylinux2014. + +### Fixed + +- Fix commpilation on latest Rust nightly. + ## 3.6.0 - 2021-07-08 ### Added diff --git a/Cargo.lock b/Cargo.lock index 411fc581..8a5f9c59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -171,7 +171,7 @@ checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" [[package]] name = "orjson" -version = "3.6.0" +version = "3.6.1" dependencies = [ "ahash", "associative-cache", diff --git a/Cargo.toml b/Cargo.toml index c5f7b40c..081abd9b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orjson" -version = "3.6.0" +version = "3.6.1" authors = ["ijl "] description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" edition = "2018"