Skip to content

Commit 7dbd05b

Browse files
committed
Update toolchains_protoc to 0.4.3
1 parent 51197aa commit 7dbd05b

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ local_path_override(
4343
path = "modules/cpp",
4444
)
4545

46-
bazel_dep(name = "toolchains_protoc", version = "0.4.2")
46+
bazel_dep(name = "toolchains_protoc", version = "0.4.3")
4747

4848
# Prevent version skew by matching protoc version to protobuf version, as C++ is the only lang that
4949
# has no cross-version runtime guarantee:

docs/lang/cpp.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The C++ module can be installed by adding the following lines to your MODULE.baz
3131
.. code-block:: python
3232
3333
bazel_dep(name = "rules_proto_grpc_cpp", version = "<version number here>")
34-
bazel_dep(name = "toolchains_protoc", version = "0.4.2")
34+
bazel_dep(name = "toolchains_protoc", version = "0.4.3")
3535
3636
# Prevent version skew by matching protoc version to protobuf version, as C++ is the only lang that
3737
# has no cross-version runtime guarantee:

examples/cpp/cpp_grpc_compile/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local_path_override(
1717
path = "../../../modules/cpp",
1818
)
1919

20-
bazel_dep(name = "toolchains_protoc", version = "0.4.2")
20+
bazel_dep(name = "toolchains_protoc", version = "0.4.3")
2121

2222
# Prevent version skew by matching protoc version to protobuf version, as C++ is the only lang that
2323
# has no cross-version runtime guarantee:

examples/cpp/cpp_grpc_library/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local_path_override(
1717
path = "../../../modules/cpp",
1818
)
1919

20-
bazel_dep(name = "toolchains_protoc", version = "0.4.2")
20+
bazel_dep(name = "toolchains_protoc", version = "0.4.3")
2121

2222
# Prevent version skew by matching protoc version to protobuf version, as C++ is the only lang that
2323
# has no cross-version runtime guarantee:

examples/cpp/cpp_proto_compile/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local_path_override(
1717
path = "../../../modules/cpp",
1818
)
1919

20-
bazel_dep(name = "toolchains_protoc", version = "0.4.2")
20+
bazel_dep(name = "toolchains_protoc", version = "0.4.3")
2121

2222
# Prevent version skew by matching protoc version to protobuf version, as C++ is the only lang that
2323
# has no cross-version runtime guarantee:

examples/cpp/cpp_proto_library/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local_path_override(
1717
path = "../../../modules/cpp",
1818
)
1919

20-
bazel_dep(name = "toolchains_protoc", version = "0.4.2")
20+
bazel_dep(name = "toolchains_protoc", version = "0.4.3")
2121

2222
# Prevent version skew by matching protoc version to protobuf version, as C++ is the only lang that
2323
# has no cross-version runtime guarantee:

modules/core/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ bazel_dep(name = "bazel_skylib", version = "1.7.1")
88
bazel_dep(name = "platforms", version = "1.0.0")
99
bazel_dep(name = "protobuf", version = "31.1")
1010
bazel_dep(name = "rules_cc", version = "0.1.2") # For fixer
11-
bazel_dep(name = "toolchains_protoc", version = "0.4.2")
11+
bazel_dep(name = "toolchains_protoc", version = "0.4.3")

tools/rulegen/cpp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ var cppLibraryRuleAttrs = append(append([]*Attr(nil), libraryRuleAttrs...), []*A
152152
},
153153
}...)
154154

155-
var cppModuleSuffixLines = `bazel_dep(name = "toolchains_protoc", version = "0.4.2")
155+
var cppModuleSuffixLines = `bazel_dep(name = "toolchains_protoc", version = "0.4.3")
156156
157157
# Prevent version skew by matching protoc version to protobuf version, as C++ is the only lang that
158158
# has no cross-version runtime guarantee:

0 commit comments

Comments
 (0)