From cc786233cb66cde0c307a48f79f4c09ab1be0818 Mon Sep 17 00:00:00 2001 From: Tim 'Piepmatz' Hesse Date: Sun, 1 Mar 2026 10:46:21 +0100 Subject: [PATCH] bump to nu 0.111, oops --- Cargo.toml | 8 ++++---- javascript/version.js | 2 +- nushell/version.nu | 2 +- python/version.py | 2 +- rust/nu_plugin_custom_values/src/cool_custom_value.rs | 6 ++++-- 5 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 52c4405..a1ff10a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,9 +6,9 @@ members = [ ] [workspace.dependencies] -nu-plugin = { version = "0.106", git = "https://github.com/nushell/nushell.git" } -nu-protocol = { version = "0.106", git = "https://github.com/nushell/nushell.git" } -nu-plugin-test-support = { version = "0.106", git = "https://github.com/nushell/nushell.git" } -nu-cmd-lang = { version = "0.106", 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 4f823ae..b68b6c4 100644 --- a/javascript/version.js +++ b/javascript/version.js @@ -1,3 +1,3 @@ module.exports = { - NUSHELL_VERSION: "0.106.2", + NUSHELL_VERSION: "0.111.1", } diff --git a/nushell/version.nu b/nushell/version.nu index a4d07d0..242ba84 100644 --- a/nushell/version.nu +++ b/nushell/version.nu @@ -1 +1 @@ -export const NUSHELL_VERSION = "0.106.2" +export const NUSHELL_VERSION = "0.111.1" diff --git a/python/version.py b/python/version.py index 7897bd9..a4a7b1d 100644 --- a/python/version.py +++ b/python/version.py @@ -1 +1 @@ -NUSHELL_VERSION = "0.106.2" +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))