Skip to content

Commit

Permalink
Bump the version number
Browse files Browse the repository at this point in the history
Summary: In advance of a release.

Reviewed By: stepancheg

Differential Revision: D52888437

fbshipit-source-id: 1911a56ba285c7dd04f412b5c5eef6c5198e4a99
  • Loading branch information
ndmitchell authored and facebook-github-bot committed Jan 19, 2024
1 parent 5a5b78d commit 69e7a51
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
8 changes: 4 additions & 4 deletions starlark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions starlark_bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion starlark_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions starlark_lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion starlark_map/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions starlark_syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"

0 comments on commit 69e7a51

Please sign in to comment.