From e7d420dbe5acbf8f7ef80a0398db590b908c358e Mon Sep 17 00:00:00 2001 From: Devyn Cairns Date: Wed, 7 Feb 2024 01:30:18 -0800 Subject: [PATCH] Release 0.3.0: update to nushell 0.90.1 --- Cargo.toml | 6 +++--- src/main.rs | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 438d2b8..4083e56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_dbus" -version = "0.2.2" +version = "0.3.0" edition = "2021" description = "Nushell plugin for communicating with D-Bus" @@ -14,7 +14,7 @@ repository = "https://github.com/devyn/nu_plugin_dbus" [dependencies] dbus = "0.9.7" -nu-plugin = "0.89.0" -nu-protocol = { version = "0.89.0", features = ["plugin"] } +nu-plugin = "0.90.1" +nu-protocol = { version = "0.90.1", features = ["plugin"] } serde = { version = "1.0.196", features = ["derive"] } serde-xml-rs = "0.6.0" diff --git a/src/main.rs b/src/main.rs index 4e2183b..cc3b3a2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -236,6 +236,7 @@ impl Plugin for NuPluginDbus { fn run( &mut self, name: &str, + _config: &Option, call: &EvaluatedCall, _input: &Value, ) -> Result { -- 2.51.2