Skip to content

Commit 7321f95

Browse files
derekmaurocopybara-github
authored andcommitted
Update dependency versions in preparation for release
PiperOrigin-RevId: 652479800 Change-Id: I71574e7dc2ea2e9a2f3071aebbbf0e6b5ce32a35
1 parent 4b21f1a commit 7321f95

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

MODULE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ module(
4040
# Please keep the versions in sync with the versions in the WORKSPACE file.
4141

4242
bazel_dep(name = "abseil-cpp",
43-
version = "20240116.0",
43+
version = "20240116.2",
4444
repo_name = "com_google_absl")
4545

4646
bazel_dep(name = "platforms",
47-
version = "0.0.8")
47+
version = "0.0.10")
4848

4949
bazel_dep(name = "re2",
5050
repo_name = "com_googlesource_code_re2",
51-
version = "2023-11-01")
51+
version = "2024-07-02")
5252

5353
bazel_dep(name = "rules_python",
5454
version = "0.29.0")

WORKSPACE

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ http_archive(
2424

2525
http_archive(
2626
name = "platforms",
27-
sha256 = "8150406605389ececb6da07cbcb509d5637a3ab9a24bc69b1101531367d89d74",
28-
urls = ["https://github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz"],
27+
urls = [
28+
"https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.10/platforms-0.0.10.tar.gz",
29+
"https://github.com/bazelbuild/platforms/releases/download/0.0.10/platforms-0.0.10.tar.gz",
30+
],
31+
sha256 = "218efe8ee736d26a3572663b374a253c012b716d8af0c07e842e82f238a0a7ee",
2932
)

googletest_deps.bzl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ def googletest_deps():
99
if not native.existing_rule("com_googlesource_code_re2"):
1010
http_archive(
1111
name = "com_googlesource_code_re2",
12-
sha256 = "828341ad08524618a626167bd320b0c2acc97bd1c28eff693a9ea33a7ed2a85f",
13-
strip_prefix = "re2-2023-11-01",
14-
urls = ["https://github.com/google/re2/releases/download/2023-11-01/re2-2023-11-01.zip"],
12+
sha256 = "eb2df807c781601c14a260a507a5bb4509be1ee626024cb45acbd57cb9d4032b",
13+
strip_prefix = "re2-2024-07-02",
14+
urls = ["https://github.com/google/re2/releases/download/2024-07-02/re2-2024-07-02.tar.gz"],
1515
)
1616

1717
if not native.existing_rule("com_google_absl"):
1818
http_archive(
1919
name = "com_google_absl",
20-
sha256 = "338420448b140f0dfd1a1ea3c3ce71b3bc172071f24f4d9a57d59b45037da440",
21-
strip_prefix = "abseil-cpp-20240116.0",
22-
urls = ["https://github.com/abseil/abseil-cpp/releases/download/20240116.0/abseil-cpp-20240116.0.tar.gz"],
20+
sha256 = "733726b8c3a6d39a4120d7e45ea8b41a434cdacde401cba500f14236c49b39dc",
21+
strip_prefix = "abseil-cpp-20240116.2",
22+
urls = ["https://github.com/abseil/abseil-cpp/releases/download/20240116.2/abseil-cpp-20240116.2.tar.gz"],
2323
)
2424

2525
if not native.existing_rule("fuchsia_sdk"):

0 commit comments

Comments
 (0)