Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ To see unreleased changes, please see the CHANGELOG on the main branch.

## [Unreleased]

## [0.29.0] - 2026-06-12

- chore: bump pyo3 version to 0.29. [#85](https://github.com/PyO3/pyo3-async-runtimes/pull/85)

## [0.28.0] - 2026-02-03

- Bump to pyo3 0.28. [#76](https://github.com/PyO3/pyo3-async-runtimes/pull/76)
Expand Down Expand Up @@ -56,7 +60,9 @@ To see unreleased changes, please see the CHANGELOG on the main branch.

Previous versions were published from [`pyo3-asyncio`](https://github.com/awestlake87/pyo3-asyncio). Consult that library for older changes.

[Unreleased]: https://github.com/PyO3/pyo3-async-runtimes/compare/v0.27.0...HEAD
[Unreleased]: https://github.com/PyO3/pyo3-async-runtimes/compare/v0.29.0...HEAD
[0.29.0]: https://github.com/PyO3/pyo3-async-runtimes/compare/v0.28.0...v0.29.0
[0.28.0]: https://github.com/PyO3/pyo3-async-runtimes/compare/v0.27.0...v0.28.0
[0.27.0]: https://github.com/PyO3/pyo3-async-runtimes/compare/v0.26.0...v0.27.0
[0.26.0]: https://github.com/PyO3/pyo3-async-runtimes/compare/v0.25.0...v0.26.0
[0.25.0]: https://github.com/PyO3/pyo3-async-runtimes/compare/v0.24.0...v0.25.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pyo3-async-runtimes"
description = "PyO3 bridges from Rust runtimes to Python's Asyncio library"
version = "0.28.0"
version = "0.29.0"
authors = [
"Andrew J Westlake <awestlake87@yahoo.com>",
"David Hewitt <mail@davidhewitt.dev>",
Expand Down Expand Up @@ -128,7 +128,7 @@ inventory = { version = "0.3", optional = true }
once_cell = "1.14"
pin-project-lite = "0.2"
pyo3 = "0.29"
pyo3-async-runtimes-macros = { path = "pyo3-async-runtimes-macros", version = "=0.28.0", optional = true }
pyo3-async-runtimes-macros = { path = "pyo3-async-runtimes-macros", version = "=0.29.0", optional = true }

[dev-dependencies]
pyo3 = { version = "0.29", features = ["macros"] }
Expand Down
2 changes: 1 addition & 1 deletion pyo3-async-runtimes-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pyo3-async-runtimes-macros"
description = "Proc Macro Attributes for `pyo3-async-runtimes`"
version = "0.28.0"
version = "0.29.0"
authors = [
"Andrew J Westlake <awestlake87@yahoo.com>",
"David Hewitt <mail@davidhewitt.dev>",
Expand Down
Loading