Skip to content

Commit 24b9a04

Browse files
authored
release: 0.22.5 (#4624)
1 parent 29c6f4b commit 24b9a04

File tree

8 files changed

+16
-9
lines changed

8 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ To see unreleased changes, please see the [CHANGELOG on the main branch guide](h
1010

1111
<!-- towncrier release notes start -->
1212

13+
## [0.22.5] - 2024-10-15
14+
15+
### Fixed
16+
17+
- Fix regression in 0.22.4 of naming collision in `__clear__` slot and `clear` method generated code. [#4619](https://github.com/PyO3/pyo3/pull/4619)
18+
19+
1320
## [0.22.4] - 2024-10-12
1421

1522
### Added
@@ -1892,7 +1899,8 @@ Yanked
18921899

18931900
- Initial release
18941901

1895-
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.22.4...HEAD
1902+
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.22.5...HEAD
1903+
[0.22.5]: https://github.com/pyo3/pyo3/compare/v0.22.4...v0.22.5
18961904
[0.22.4]: https://github.com/pyo3/pyo3/compare/v0.22.3...v0.22.4
18971905
[0.22.3]: https://github.com/pyo3/pyo3/compare/v0.22.2...v0.22.3
18981906
[0.22.2]: https://github.com/pyo3/pyo3/compare/v0.22.1...v0.22.2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ name = "string_sum"
7171
crate-type = ["cdylib"]
7272

7373
[dependencies]
74-
pyo3 = { version = "0.22.4", features = ["extension-module"] }
74+
pyo3 = { version = "0.22.5", features = ["extension-module"] }
7575
```
7676

7777
**`src/lib.rs`**
@@ -140,7 +140,7 @@ Start a new project with `cargo new` and add `pyo3` to the `Cargo.toml` like th
140140

141141
```toml
142142
[dependencies.pyo3]
143-
version = "0.22.4"
143+
version = "0.22.5"
144144
features = ["auto-initialize"]
145145
```
146146

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
variable::set("PYO3_VERSION", "0.22.4");
1+
variable::set("PYO3_VERSION", "0.22.5");
22
file::rename(".template/Cargo.toml", "Cargo.toml");
33
file::rename(".template/pyproject.toml", "pyproject.toml");
44
file::delete(".template");
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
variable::set("PYO3_VERSION", "0.22.4");
1+
variable::set("PYO3_VERSION", "0.22.5");
22
file::rename(".template/Cargo.toml", "Cargo.toml");
33
file::rename(".template/pyproject.toml", "pyproject.toml");
44
file::delete(".template");
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
variable::set("PYO3_VERSION", "0.22.4");
1+
variable::set("PYO3_VERSION", "0.22.5");
22
file::rename(".template/Cargo.toml", "Cargo.toml");
33
file::rename(".template/plugin_api/Cargo.toml", "plugin_api/Cargo.toml");
44
file::delete(".template");
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
variable::set("PYO3_VERSION", "0.22.4");
1+
variable::set("PYO3_VERSION", "0.22.5");
22
file::rename(".template/Cargo.toml", "Cargo.toml");
33
file::rename(".template/setup.cfg", "setup.cfg");
44
file::delete(".template");
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
variable::set("PYO3_VERSION", "0.22.4");
1+
variable::set("PYO3_VERSION", "0.22.5");
22
file::rename(".template/Cargo.toml", "Cargo.toml");
33
file::rename(".template/pyproject.toml", "pyproject.toml");
44
file::delete(".template");

newsfragments/4619.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)