From fda181d566f7b86eb92ce8249926cac59c65d20c Mon Sep 17 00:00:00 2001 From: 132ikl <132@ikl.sh> Date: Mon, 16 Jun 2025 15:40:37 -0400 Subject: [PATCH] Adjust std-rfc/clip deprecation window (#15981) Follow-up to #15877. That PR was created before 0.105, but merged after it was released. This PR adjusts the deprecation window from 0.105.0-0.107.0 to 0.106.0-0.108.0 --- crates/nu-std/std-rfc/clip/mod.nu | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/nu-std/std-rfc/clip/mod.nu b/crates/nu-std/std-rfc/clip/mod.nu index bc33eaf407..9e0d7de658 100644 --- a/crates/nu-std/std-rfc/clip/mod.nu +++ b/crates/nu-std/std-rfc/clip/mod.nu @@ -12,7 +12,7 @@ module std-clip { use std-clip # Copy input to system clipboard -@deprecated "The clip module has been moved to std. Please use the std version instead of the std-rfc version." --since 0.105.0 --remove 0.107.0 +@deprecated "The clip module has been moved to std. Please use the std version instead of the std-rfc version." --since 0.106.0 --remove 0.108.0 @example "Copy a string to the clipboard" { "Hello" | clip copy } @@ -23,7 +23,7 @@ export def copy [ } # Paste contents of system clipboard -@deprecated "The clip module has been moved to std. Please use the std version instead of the std-rfc version." --since 0.105.0 --remove 0.107.0 +@deprecated "The clip module has been moved to std. Please use the std version instead of the std-rfc version." --since 0.106.0 --remove 0.108.0 @example "Paste a string from the clipboard" { clip paste } --result "Hello" @@ -32,7 +32,7 @@ export def paste []: [nothing -> string] { } # Add a prefix to each line of the content to be copied -@deprecated "The clip module has been moved to std. Please use the std version instead of the std-rfc version." --since 0.105.0 --remove 0.107.0 +@deprecated "The clip module has been moved to std. Please use the std version instead of the std-rfc version." --since 0.106.0 --remove 0.108.0 @example "Format output for Nushell doc" { [1 2 3] | clip prefix '# => ' } --result "# => ╭───┬───╮