summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWendy Yu <wendyy@meta.com>2024-02-09 10:24:49 -0800
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>2024-02-09 10:24:49 -0800
commitb18b097c30967b37224b08327a64a08df9a3f248 (patch)
tree279e83e465c789085e25072aa96f4e068b94f0af
parentd31ecaf55d09aa33254f7d10f6e5dc5cf792f52e (diff)
bump allocative version for hashbrown 0.12.3 -> 0.14.3v0.12.0
Summary: Already released new allocative version to crates.io, also updating internally. We can keep the starlark-rust 0.12.3 version since I updated allocative before updating starlark in crates.io locally. I had to bump the version for allocative as well to get the hashbrown fix into the release. Will make a new github release for starlark-rust when I land this. Reviewed By: ndmitchell Differential Revision: D53614009 fbshipit-source-id: 718d96bbd1a46e8af5a7b2a592cf518ab9db9e5d
-rw-r--r--CHANGELOG.md1
-rw-r--r--Cargo.toml4
-rw-r--r--allocative/allocative/Cargo.toml4
-rw-r--r--allocative/allocative_derive/Cargo.toml2
4 files changed, 6 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 449977c2..ef1a72b2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,6 +15,7 @@
- Removed autocompletion on reserved words and some trigger chars for Starlark
LSP.
- Updated `hashbrown` from 0.13.2 to 0.14.3.
+- Updated `allocative` from 0.3.1 to 0.3.2.
## 0.11 (Jan 19, 2024)
diff --git a/Cargo.toml b/Cargo.toml
index c3b9c41c..bab5d657 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -18,8 +18,8 @@ license = "Apache-2.0"
repository = "https://github.com/facebookexperimental/starlark-rust"
[workspace.dependencies]
-allocative = { version = "0.3.1", path = "allocative/allocative" }
-allocative_derive = { version = "0.3.1", path = "allocative/allocative_derive" }
+allocative = { version = "0.3.2", path = "allocative/allocative" }
+allocative_derive = { version = "0.3.2", path = "allocative/allocative_derive" }
cmp_any = { version = "0.8.1", path = "gazebo/cmp_any" }
display_container = { version = "0.9.0", path = "gazebo/display_container" }
dupe = { version = "0.9.0", path = "gazebo/dupe" }
diff --git a/allocative/allocative/Cargo.toml b/allocative/allocative/Cargo.toml
index 1986a625..84947be1 100644
--- a/allocative/allocative/Cargo.toml
+++ b/allocative/allocative/Cargo.toml
@@ -6,10 +6,10 @@ edition = "2021"
license = { workspace = true }
name = "allocative"
repository = "https://github.com/facebookexperimental/allocative"
-version = "0.3.1"
+version = "0.3.2"
[dependencies]
-allocative_derive = { path = "../allocative_derive", version = "=0.3.1" }
+allocative_derive = { path = "../allocative_derive", version = "=0.3.2" }
ctor = { workspace = true }
diff --git a/allocative/allocative_derive/Cargo.toml b/allocative/allocative_derive/Cargo.toml
index ce7aa726..0dcf9880 100644
--- a/allocative/allocative_derive/Cargo.toml
+++ b/allocative/allocative_derive/Cargo.toml
@@ -6,7 +6,7 @@ edition = "2021"
license = { workspace = true }
name = "allocative_derive"
repository = "https://github.com/facebookexperimental/allocative"
-version = "0.3.1"
+version = "0.3.2"
[lib]
proc-macro = true