Skip to content

Commit 980950e

Browse files
committed
Version 0.7.2
1 parent 39c3ac0 commit 980950e

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
## [Unreleased]
44

5-
[Unreleased]: https://github.com/dgrunwald/rust-cpython/compare/0.7.1...HEAD
5+
[Unreleased]: https://github.com/dgrunwald/rust-cpython/compare/0.7.2...HEAD
6+
7+
## 0.7.2 - 2024-07-02
8+
9+
- [Added support for Python 3.12][295] (PR by [@quark-zju])
10+
11+
[295]: https://github.com/dgrunwald/rust-cpython/pull/295
612

713
## 0.7.1 - 2022-10-25
814
- Added support for Python 3.11. (based on [PR 279][279] by [@Techcable])

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "cpython"
4-
version = "0.7.1"
4+
version = "0.7.2"
55
description = "Bindings to Python"
66
authors = ["Daniel Grunwald <daniel@danielgrunwald.de>"]
77
readme = "README.md"
@@ -53,7 +53,7 @@ version = "0.7.0"
5353
[dependencies.python3-sys]
5454
optional = true
5555
path = "python3-sys"
56-
version = "0.7.1"
56+
version = "0.7.2"
5757

5858
[features]
5959
default = ["python3-sys"]

python3-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "python3-sys"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
description = "FFI Declarations for Python 3"
55
readme = "README.md"
66
keywords = [

0 commit comments

Comments
 (0)