Bump version to 0.102.0 (#14998)

This commit is contained in:
Yash Thakur
2025-02-04 10:49:35 -05:00
committed by GitHub
parent f04db2a7a3
commit 1aa2ed1947
48 changed files with 254 additions and 254 deletions

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "MIT"
name = "nu-command"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-command"
version = "0.101.1"
version = "0.102.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -16,21 +16,21 @@ bench = false
workspace = true
[dependencies]
nu-cmd-base = { path = "../nu-cmd-base", version = "0.101.1" }
nu-color-config = { path = "../nu-color-config", version = "0.101.1" }
nu-engine = { path = "../nu-engine", version = "0.101.1", default-features = false }
nu-glob = { path = "../nu-glob", version = "0.101.1" }
nu-json = { path = "../nu-json", version = "0.101.1" }
nu-parser = { path = "../nu-parser", version = "0.101.1" }
nu-path = { path = "../nu-path", version = "0.101.1" }
nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.101.1" }
nu-protocol = { path = "../nu-protocol", version = "0.101.1", default-features = false }
nu-system = { path = "../nu-system", version = "0.101.1" }
nu-table = { path = "../nu-table", version = "0.101.1" }
nu-term-grid = { path = "../nu-term-grid", version = "0.101.1" }
nu-utils = { path = "../nu-utils", version = "0.101.1", default-features = false }
nu-cmd-base = { path = "../nu-cmd-base", version = "0.102.0" }
nu-color-config = { path = "../nu-color-config", version = "0.102.0" }
nu-engine = { path = "../nu-engine", version = "0.102.0", default-features = false }
nu-glob = { path = "../nu-glob", version = "0.102.0" }
nu-json = { path = "../nu-json", version = "0.102.0" }
nu-parser = { path = "../nu-parser", version = "0.102.0" }
nu-path = { path = "../nu-path", version = "0.102.0" }
nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.102.0" }
nu-protocol = { path = "../nu-protocol", version = "0.102.0", default-features = false }
nu-system = { path = "../nu-system", version = "0.102.0" }
nu-table = { path = "../nu-table", version = "0.102.0" }
nu-term-grid = { path = "../nu-term-grid", version = "0.102.0" }
nu-utils = { path = "../nu-utils", version = "0.102.0", default-features = false }
nu-ansi-term = { workspace = true }
nuon = { path = "../nuon", version = "0.101.1" }
nuon = { path = "../nuon", version = "0.102.0" }
alphanumeric-sort = { workspace = true }
base64 = { workspace = true }
@ -190,8 +190,8 @@ sqlite = ["rusqlite"]
trash-support = ["trash"]
[dev-dependencies]
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.101.1" }
nu-test-support = { path = "../nu-test-support", version = "0.101.1" }
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.102.0" }
nu-test-support = { path = "../nu-test-support", version = "0.102.0" }
dirs = { workspace = true }
mockito = { workspace = true, default-features = false }

View File

@ -68,8 +68,8 @@ impl Registry for NuShellNightly {
.get::<Vec<Response>>(&url)?;
if let Some(v) = versions.first() {
// The nightly repo tags look like "0.101.1-nightly.4+23dc1b6"
// We want to return the "0.101.1-nightly.4" part because hustcer
// The nightly repo tags look like "0.102.0-nightly.4+23dc1b6"
// We want to return the "0.102.0-nightly.4" part because hustcer
// is changing the cargo.toml package.version to be that syntax
let up_through_plus = match v.tag_name.split('+').next() {
Some(v) => v,