diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e68b78ea..c263b87e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Starlark -## 0.11 (Unreleased) +## 0.11 (Jan 19, 2024) * `UnpackValue` is no longer implemented for `Vec`. Instead, `UnpackList`, `UnpackTuple` or `UnpackListOrTuple` can be used. * Added `call_stack()` function. diff --git a/starlark/Cargo.toml b/starlark/Cargo.toml index 15cb312c4..f7e90a293 100644 --- a/starlark/Cargo.toml +++ b/starlark/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["starlark", "skylark", "bazel", "language", "interpreter"] license = "Apache-2.0" name = "starlark" repository = "https://github.com/facebookexperimental/starlark-rust" -version = "0.10.0" +version = "0.11.0" [dependencies] anyhow = "1.0.65" @@ -37,9 +37,9 @@ paste = "1.0" regex = "1.5.4" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -starlark_derive = { version = "0.10.0", path = "../starlark_derive" } -starlark_map = { version = "0.10.0", path = "../starlark_map" } -starlark_syntax = { version = "0.10.0", path = "../starlark_syntax" } +starlark_derive = { version = "0.11.0", path = "../starlark_derive" } +starlark_map = { version = "0.11.0", path = "../starlark_map" } +starlark_syntax = { version = "0.11.0", path = "../starlark_syntax" } static_assertions = "1.1.0" strsim = "0.10.0" textwrap = "0.11" diff --git a/starlark_bin/Cargo.toml b/starlark_bin/Cargo.toml index 09aa8daed..2142b3975 100644 --- a/starlark_bin/Cargo.toml +++ b/starlark_bin/Cargo.toml @@ -11,14 +11,14 @@ keywords = ["starlark", "skylark", "language", "interpreter"] license = "Apache-2.0" name = "starlark_bin" repository = "https://github.com/facebookexperimental/starlark-rust" -version = "0.10.0" +version = "0.11.0" [dependencies] dupe = { workspace = true } -starlark = { version = "0.10.0", path = "../starlark" } -starlark_lsp = { version = "0.10.0", path = "../starlark_lsp" } -starlark_map = { version = "0.10.0", path = "../starlark_map" } +starlark = { version = "0.11.0", path = "../starlark" } +starlark_lsp = { version = "0.11.0", path = "../starlark_lsp" } +starlark_map = { version = "0.11.0", path = "../starlark_map" } anyhow = "1.0.65" argfile = "0.1.0" diff --git a/starlark_derive/Cargo.toml b/starlark_derive/Cargo.toml index 5ef4f0a42..37ea0738f 100644 --- a/starlark_derive/Cargo.toml +++ b/starlark_derive/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "starlark_derive" repository = "https://github.com/facebookexperimental/starlark-rust" -version = "0.10.0" +version = "0.11.0" [lib] proc-macro = true diff --git a/starlark_lsp/Cargo.toml b/starlark_lsp/Cargo.toml index b656afb44..da2354f6d 100644 --- a/starlark_lsp/Cargo.toml +++ b/starlark_lsp/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["starlark", "skylark", "language", "interpreter"] license = "Apache-2.0" name = "starlark_lsp" repository = "https://github.com/facebookexperimental/starlark-rust" -version = "0.10.0" +version = "0.11.0" [dependencies] anyhow = "1.0.65" @@ -25,8 +25,8 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "1.0.36" -starlark = { version = "0.10.0", path = "../starlark" } -starlark_syntax = { version = "0.10.0", path = "../starlark_syntax" } +starlark = { version = "0.11.0", path = "../starlark" } +starlark_syntax = { version = "0.11.0", path = "../starlark_syntax" } [dev-dependencies] regex = "1.5.4" diff --git a/starlark_map/Cargo.toml b/starlark_map/Cargo.toml index 19903c2fa..781847742 100644 --- a/starlark_map/Cargo.toml +++ b/starlark_map/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" license = "Apache-2.0" name = "starlark_map" repository = "https://github.com/facebookexperimental/starlark-rust" -version = "0.10.0" +version = "0.11.0" [dependencies] allocative = { workspace = true, features = ["hashbrown"] } diff --git a/starlark_syntax/Cargo.toml b/starlark_syntax/Cargo.toml index d4e618fa4..1b46c60f5 100644 --- a/starlark_syntax/Cargo.toml +++ b/starlark_syntax/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["starlark", "skylark", "bazel", "language", "interpreter"] license = "Apache-2.0" name = "starlark_syntax" repository = "https://github.com/facebookexperimental/starlark-rust" -version = "0.10.0" +version = "0.11.0" [build-dependencies] lalrpop = "0.19.7" @@ -32,7 +32,7 @@ thiserror = "1.0.36" allocative = { workspace = true } dupe = { workspace = true } -starlark_map = { version = "0.10.0", path = "../starlark_map" } +starlark_map = { version = "0.11.0", path = "../starlark_map" } [dev-dependencies] serde_json = "1.0"