mirror of
https://github.com/nushell/nushell.git
synced 2025-08-19 12:44:17 +02:00
Multiline scripts part 2 (#2795)
* Begin allowing comments and multiline scripts. * clippy * Finish moving to groups. Test pass * Keep going * WIP * WIP * BROKEN WIP * WIP * WIP * Fix more tests * WIP: alias starts working * Broken WIP * Broken WIP * Variables begin to work * captures start working * A little better but needs fixed scope * Shorthand env setting * Update main merge * Broken WIP * WIP * custom command parsing * Custom commands start working * Fix coloring and parsing of block * Almost there * Add some tests * Add more param types * Bump version * Fix benchmark * Fix stuff
This commit is contained in:
@@ -4,7 +4,7 @@ description = "CLI for nushell"
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
name = "nu-data"
|
||||
version = "0.24.1"
|
||||
version = "0.24.2"
|
||||
|
||||
[lib]
|
||||
doctest = false
|
||||
@@ -29,12 +29,12 @@ query_interface = "0.3.5"
|
||||
serde = {version = "1.0.115", features = ["derive"]}
|
||||
toml = "0.5.6"
|
||||
|
||||
nu-errors = {version = "0.24.1", path = "../nu-errors"}
|
||||
nu-protocol = {version = "0.24.1", path = "../nu-protocol"}
|
||||
nu-source = {version = "0.24.1", path = "../nu-source"}
|
||||
nu-table = {version = "0.24.1", path = "../nu-table"}
|
||||
nu-test-support = {version = "0.24.1", path = "../nu-test-support"}
|
||||
nu-value-ext = {version = "0.24.1", path = "../nu-value-ext"}
|
||||
nu-errors = {version = "0.24.2", path = "../nu-errors"}
|
||||
nu-protocol = {version = "0.24.2", path = "../nu-protocol"}
|
||||
nu-source = {version = "0.24.2", path = "../nu-source"}
|
||||
nu-table = {version = "0.24.2", path = "../nu-table"}
|
||||
nu-test-support = {version = "0.24.2", path = "../nu-test-support"}
|
||||
nu-value-ext = {version = "0.24.2", path = "../nu-value-ext"}
|
||||
|
||||
[target.'cfg(unix)'.dependencies]
|
||||
users = "0.10.0"
|
||||
|
Reference in New Issue
Block a user