From ed10156bbd5d519a8a4b7e83c41652c0252fc728 Mon Sep 17 00:00:00 2001 From: Zeeshan Ali Khan Date: Thu, 22 Feb 2024 16:56:51 +0100 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=91=BD=EF=B8=8F=20zv:=20Update=20glib?= =?UTF-8?q?=20API=20use=20in=20gvariant=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Should have been part of 2a5d82c. --- zvariant/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zvariant/src/lib.rs b/zvariant/src/lib.rs index 3eb60e44e..398db9919 100644 --- a/zvariant/src/lib.rs +++ b/zvariant/src/lib.rs @@ -133,7 +133,7 @@ mod tests { use std::str::FromStr; #[cfg(feature = "gvariant")] - use glib::{Bytes, FromVariant, Variant}; + use glib::{variant::FromVariant, Bytes, Variant}; use serde::{Deserialize, Serialize}; use crate::{serialized::Data, to_bytes, to_bytes_for_signature, MaxDepthExceeded}; From b7400ca80f222cd60cd164caf629de8809297f36 Mon Sep 17 00:00:00 2001 From: Zeeshan Ali Khan Date: Thu, 22 Feb 2024 16:58:01 +0100 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=94=96=20zb,zm:=20Release=204.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.lock | 4 ++-- zbus/Cargo.toml | 4 ++-- zbus_macros/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 875f6e482..7e76b0109 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2536,7 +2536,7 @@ checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" [[package]] name = "zbus" -version = "4.0.1" +version = "4.1.0" dependencies = [ "async-broadcast", "async-executor", @@ -2583,7 +2583,7 @@ dependencies = [ [[package]] name = "zbus_macros" -version = "4.0.1" +version = "4.1.0" dependencies = [ "async-io 2.3.1", "futures-util", diff --git a/zbus/Cargo.toml b/zbus/Cargo.toml index aaf1e4a7a..acc0193b4 100644 --- a/zbus/Cargo.toml +++ b/zbus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zbus" -version = "4.0.1" +version = "4.1.0" authors = ["Zeeshan Ali Khan "] edition = "2021" rust-version = "1.75" @@ -45,7 +45,7 @@ zvariant = { path = "../zvariant", version = "4.0.0", default-features = false, "enumflags2", ] } zbus_names = { path = "../zbus_names", version = "3.0" } -zbus_macros = { path = "../zbus_macros", version = "=4.0.1" } +zbus_macros = { path = "../zbus_macros", version = "=4.1.0" } enumflags2 = { version = "0.7.9", features = ["serde"] } derivative = "2.2" async-io = { version = "2.3.1", optional = true } diff --git a/zbus_macros/Cargo.toml b/zbus_macros/Cargo.toml index 51b07c5ca..d5d305403 100644 --- a/zbus_macros/Cargo.toml +++ b/zbus_macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zbus_macros" # Keep version in sync with zbus crate -version = "4.0.1" +version = "4.1.0" authors = [ "Marc-André Lureau ", "Zeeshan Ali Khan ",