diff --git a/atspi-common/Cargo.toml b/atspi-common/Cargo.toml index 59b4b3be..c1c86833 100644 --- a/atspi-common/Cargo.toml +++ b/atspi-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atspi-common" -version = "0.7.0" +version = "0.8.0" edition = "2021" readme = "README.md" categories = ["accessibility", "api-bindings"] diff --git a/atspi-connection/Cargo.toml b/atspi-connection/Cargo.toml index 17f034e5..9a0b23ae 100644 --- a/atspi-connection/Cargo.toml +++ b/atspi-connection/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atspi-connection" -version = "0.7.0" +version = "0.8.0" edition = "2021" description = "A method of connecting, querying, sending and receiving over AT-SPI." license = "Apache-2.0 OR MIT" @@ -20,8 +20,8 @@ async-std = ["zbus/async-io", "atspi-proxies/async-std", "atspi-common/async-std tokio = ["zbus/tokio", "atspi-proxies/tokio", "atspi-common/tokio"] [dependencies] -atspi-common = { path = "../atspi-common/", version = "0.7.0", default-features = false } -atspi-proxies = { path = "../atspi-proxies/", version = "0.7.0", default-features = false } +atspi-common = { path = "../atspi-common/", version = "0.8.0", default-features = false } +atspi-proxies = { path = "../atspi-proxies/", version = "0.8.0", default-features = false } futures-lite = { version = "2", default-features = false } tracing = { optional = true, workspace = true } zbus.workspace = true diff --git a/atspi-proxies/Cargo.toml b/atspi-proxies/Cargo.toml index 1ec28abd..ce36ac61 100644 --- a/atspi-proxies/Cargo.toml +++ b/atspi-proxies/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atspi-proxies" -version = "0.7.0" +version = "0.8.0" description = "AT-SPI2 proxies to query or manipulate UI objects" license = "Apache-2.0 OR MIT" readme = "README.md" @@ -23,14 +23,14 @@ gvariant = ["zvariant/gvariant"] tokio = ["zbus/tokio", "atspi-common/tokio"] [dependencies] -atspi-common = { path = "../atspi-common", version = "0.7.0", default-features = false } +atspi-common = { path = "../atspi-common", version = "0.8.0", default-features = false } serde = { version = "^1.0", default-features = false, features = ["derive"] } zbus = { workspace = true } zvariant = { version = "4.1", default-features = false } [dev-dependencies] async-std = { version = "1", features = ["attributes"] } -atspi-common = { path = "../atspi-common", version = "0.6.0", features = ["async-std"] } +atspi-common = { path = "../atspi-common", version = "0.8.0", features = ["async-std"] } byteorder = "1.4" futures-lite = { version = "2", default-features = false } rename-item = "0.1.0" diff --git a/atspi-proxies/src/action.rs b/atspi-proxies/src/action.rs index 233fc233..c7241173 100644 --- a/atspi-proxies/src/action.rs +++ b/atspi-proxies/src/action.rs @@ -17,7 +17,7 @@ //! [TextProxy]: crate::text::TextProxy //! [ValueProxy]: crate::value::ValueProxy -use atspi_common::action::Action; +use atspi_common::Action; /// A handle for a remote object implementing the `org.a11y.atspi.Action` /// interface. diff --git a/atspi/Cargo.toml b/atspi/Cargo.toml index 3a9e60f8..9d22e23f 100644 --- a/atspi/Cargo.toml +++ b/atspi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atspi" -version = "0.23.0" +version = "0.24.0" authors.workspace = true edition = "2021" description = "Pure-Rust, zbus-based AT-SPI2 protocol implementation." @@ -29,9 +29,9 @@ connection-tokio = ["atspi-connection/tokio", "connection"] tracing = ["atspi-connection/tracing"] [dependencies] -atspi-common = { path = "../atspi-common", version = "0.7.0", default-features = false } -atspi-connection = { path = "../atspi-connection", version = "0.7.0", default-features = false, optional = true } -atspi-proxies = { path = "../atspi-proxies", version = "0.7.0", default-features = false, optional = true } +atspi-common = { path = "../atspi-common", version = "0.8.0", default-features = false } +atspi-connection = { path = "../atspi-connection", version = "0.8.0", default-features = false, optional = true } +atspi-proxies = { path = "../atspi-proxies", version = "0.8.0", default-features = false, optional = true } zbus = { workspace = true, default-features = false, optional = true } [[bench]]