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
6 changes: 3 additions & 3 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.21.0"
version = "0.22.0"
authors = [
"Andrew J Westlake <[email protected]>",
"David Hewitt <[email protected]>",
Expand All @@ -18,7 +18,7 @@ edition = "2021"
rust-version = "1.63"

[workspace]
members = ["pyo3-asyncio-macros"]
members = ["pyo3-async-runtimes-macros"]

[features]
async-std-runtime = ["async-std"]
Expand Down Expand Up @@ -121,7 +121,7 @@ inventory = { version = "0.3", optional = true }
once_cell = "1.14"
pin-project-lite = "0.2"
pyo3 = "0.22"
pyo3-async-runtimes-macros = { path = "pyo3-asyncio-macros", version = "=0.21.0", optional = true }
pyo3-async-runtimes-macros = { path = "pyo3-async-runtimes-macros", version = "=0.22.0", optional = true }

[dev-dependencies]
pyo3 = { version = "0.22", features = ["macros"] }
Expand Down
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ test: lint

test-feature-powerset: lint
cargo install cargo-hack
cargo hack test --feature-powerset
cargo hack test --feature-powerset

publish: test-feature-powerset
cargo publish --manifest-path pyo3-asyncio-macros/Cargo.toml
sleep 30 # wait for crates.io to update
publish: test-feature-powerset
cargo publish --package=pyo3-async-runtimes-macros
cargo publish
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.21.0"
version = "0.22.0"
authors = [
"Andrew J Westlake <[email protected]>",
"David Hewitt <[email protected]>",
Expand Down
File renamed without changes.
Loading