diff --git a/Cargo.lock b/Cargo.lock index 5d5fbae6e0..49122c5359 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1174,7 +1174,7 @@ dependencies = [ [[package]] name = "nickel-lang" -version = "0.3.0" +version = "0.3.1" dependencies = [ "ansi_term", "assert_matches", @@ -1215,7 +1215,7 @@ dependencies = [ [[package]] name = "nickel-lang-lsp" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "assert_matches", @@ -1241,7 +1241,7 @@ dependencies = [ [[package]] name = "nickel-lang-utilities" -version = "0.3.0" +version = "0.3.1" dependencies = [ "codespan", "criterion", @@ -1250,7 +1250,7 @@ dependencies = [ [[package]] name = "nickel-repl" -version = "0.3.0" +version = "0.3.1" dependencies = [ "nickel-lang", ] diff --git a/Cargo.toml b/Cargo.toml index e1557215ed..c94dd08a22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nickel-lang" -version = "0.3.0" +version = "0.3.1" authors = ["Nickel team"] license = "MIT" readme = "README.md" @@ -68,7 +68,7 @@ pretty_assertions = "1.2.1" assert_matches = "1.5.0" criterion = "0.3" pprof = { version = "0.9.1", features = ["criterion", "flamegraph"] } -nickel-lang-utilities = {path = "utilities", version = "0.3.0"} +nickel-lang-utilities = {path = "utilities", version = "0.3.1"} similar = "2.1.0" [workspace] diff --git a/lsp/nls/Cargo.toml b/lsp/nls/Cargo.toml index ebbd75ab20..b2ad957670 100644 --- a/lsp/nls/Cargo.toml +++ b/lsp/nls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nickel-lang-lsp" -version = "0.3.0" +version = "0.3.1" authors = ["Nickel team"] license = "MIT" readme = "README.md" @@ -31,7 +31,7 @@ lsp-types = "0.88" log = "0.4" env_logger = "0.9" anyhow = "1.0" -nickel-lang = {path = "../../", version = "0.3.0"} +nickel-lang = {path = "../../", version = "0.3.1"} derive_more = "0.99" lazy_static = "1" csv = "1" diff --git a/nickel-wasm-repl/Cargo.toml b/nickel-wasm-repl/Cargo.toml index 1b3104aa48..20428aaf44 100644 --- a/nickel-wasm-repl/Cargo.toml +++ b/nickel-wasm-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nickel-repl" -version = "0.3.0" +version = "0.3.1" authors = ["Nickel team"] license = "MIT" readme = "README.md" @@ -11,7 +11,7 @@ keywords = ["configuration", "language", "nix", "nickel"] edition = "2018" [dependencies] -nickel-lang = {default-features = false, path = "../", version = "0.3.0", features=["repl-wasm"]} +nickel-lang = {default-features = false, path = "../", version = "0.3.1", features=["repl-wasm"]} [lib] crate-type = ["cdylib", "rlib"] diff --git a/utilities/Cargo.toml b/utilities/Cargo.toml index 3b0e2c0d79..301efa4885 100644 --- a/utilities/Cargo.toml +++ b/utilities/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nickel-lang-utilities" -version = "0.3.0" +version = "0.3.1" authors = ["The Nickel Team "] description = "Common helper functions for the tests and benchmarks of the nickel-lang crate." edition = "2018" @@ -10,6 +10,6 @@ bench = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nickel-lang = {path = "../", version = "0.3.0"} +nickel-lang = {path = "../", version = "0.3.1"} criterion = "0.3" codespan = "0.11"