From 980950ed43191153a431d329dad98dddab839130 Mon Sep 17 00:00:00 2001 From: Mark Juggurnauth-Thomas Date: Tue, 2 Jul 2024 11:58:08 +0100 Subject: [PATCH] Version 0.7.2 --- CHANGELOG.md | 8 +++++++- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- python3-sys/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bbe2e2..5aa1786 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,13 @@ ## [Unreleased] -[Unreleased]: https://github.com/dgrunwald/rust-cpython/compare/0.7.1...HEAD +[Unreleased]: https://github.com/dgrunwald/rust-cpython/compare/0.7.2...HEAD + +## 0.7.2 - 2024-07-02 + +- [Added support for Python 3.12][295] (PR by [@quark-zju]) + +[295]: https://github.com/dgrunwald/rust-cpython/pull/295 ## 0.7.1 - 2022-10-25 - Added support for Python 3.11. (based on [PR 279][279] by [@Techcable]) diff --git a/Cargo.lock b/Cargo.lock index 817c500..f129a4d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" [[package]] name = "cpython" -version = "0.7.1" +version = "0.7.2" dependencies = [ "libc", "num-traits", @@ -91,7 +91,7 @@ dependencies = [ [[package]] name = "python3-sys" -version = "0.7.1" +version = "0.7.2" dependencies = [ "libc", "regex", diff --git a/Cargo.toml b/Cargo.toml index d8215aa..d38ad8e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cpython" -version = "0.7.1" +version = "0.7.2" description = "Bindings to Python" authors = ["Daniel Grunwald "] readme = "README.md" @@ -53,7 +53,7 @@ version = "0.7.0" [dependencies.python3-sys] optional = true path = "python3-sys" -version = "0.7.1" +version = "0.7.2" [features] default = ["python3-sys"] diff --git a/python3-sys/Cargo.toml b/python3-sys/Cargo.toml index 7c235b4..2f046dd 100644 --- a/python3-sys/Cargo.toml +++ b/python3-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "python3-sys" -version = "0.7.1" +version = "0.7.2" description = "FFI Declarations for Python 3" readme = "README.md" keywords = [