diff --git a/Cargo.toml b/Cargo.toml index ee8fe57..a1ff10a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,9 +6,9 @@ members = [ ] [workspace.dependencies] -nu-plugin = { version = "0.109", git = "https://github.com/nushell/nushell.git" } -nu-protocol = { version = "0.109", git = "https://github.com/nushell/nushell.git" } -nu-plugin-test-support = { version = "0.109", git = "https://github.com/nushell/nushell.git" } -nu-cmd-lang = { version = "0.109", git = "https://github.com/nushell/nushell.git" } +nu-plugin = { version = "0.111", git = "https://github.com/nushell/nushell.git" } +nu-protocol = { version = "0.111", git = "https://github.com/nushell/nushell.git" } +nu-plugin-test-support = { version = "0.111", git = "https://github.com/nushell/nushell.git" } +nu-cmd-lang = { version = "0.111", git = "https://github.com/nushell/nushell.git" } serde = "1.0" diff --git a/javascript/version.js b/javascript/version.js index e87ef57..b68b6c4 100644 --- a/javascript/version.js +++ b/javascript/version.js @@ -1,3 +1,3 @@ module.exports = { - NUSHELL_VERSION: "0.107.1", + NUSHELL_VERSION: "0.111.1", } diff --git a/nushell/version.nu b/nushell/version.nu index 05a84a7..242ba84 100644 --- a/nushell/version.nu +++ b/nushell/version.nu @@ -1 +1 @@ -export const NUSHELL_VERSION = "0.107.1" +export const NUSHELL_VERSION = "0.111.1" diff --git a/python/version.py b/python/version.py index bd9723e..a4a7b1d 100644 --- a/python/version.py +++ b/python/version.py @@ -1 +1 @@ -NUSHELL_VERSION = "0.107.1" +NUSHELL_VERSION = "0.111.1" diff --git a/rust/nu_plugin_custom_values/src/cool_custom_value.rs b/rust/nu_plugin_custom_values/src/cool_custom_value.rs index a6ee6f4..d4df170 100644 --- a/rust/nu_plugin_custom_values/src/cool_custom_value.rs +++ b/rust/nu_plugin_custom_values/src/cool_custom_value.rs @@ -1,6 +1,5 @@ use nu_protocol::{ - ast::{self, Math, Operator}, - CustomValue, ShellError, Span, Type, Value, + CustomValue, ShellError, Span, Type, Value, ast::{self, Math, Operator}, casing::Casing }; use serde::{Deserialize, Serialize}; use std::cmp::Ordering; @@ -68,6 +67,7 @@ impl CustomValue for CoolCustomValue { _self_span: Span, index: usize, path_span: Span, + _optional: bool, ) -> Result { if index == 0 { Ok(Value::string(&self.cool, path_span)) @@ -84,6 +84,8 @@ impl CustomValue for CoolCustomValue { self_span: Span, column_name: String, path_span: Span, + _optional: bool, + _casing: Casing, ) -> Result { if column_name == "cool" { Ok(Value::string(&self.cool, path_span))