Skip to content

Commit f2c3f7a

Browse files
committed
Update toolchains_protoc to 0.5.0
1 parent 143562a commit f2c3f7a

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
@@ -44,7 +44,7 @@ local_path_override(
4444
path = "modules/cpp",
4545
)
4646

47-
bazel_dep(name = "toolchains_protoc", version = "0.4.3")
47+
bazel_dep(name = "toolchains_protoc", version = "0.5.0")
4848

4949
# Prevent version skew by matching protoc version to protobuf version, as C++ is the only lang that
5050
# 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.3")
34+
bazel_dep(name = "toolchains_protoc", version = "0.5.0")
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.3")
20+
bazel_dep(name = "toolchains_protoc", version = "0.5.0")
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.3")
20+
bazel_dep(name = "toolchains_protoc", version = "0.5.0")
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.3")
20+
bazel_dep(name = "toolchains_protoc", version = "0.5.0")
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.3")
20+
bazel_dep(name = "toolchains_protoc", version = "0.5.0")
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
@@ -9,4 +9,4 @@ bazel_dep(name = "bazel_skylib", version = "1.8.1")
99
bazel_dep(name = "platforms", version = "1.0.0")
1010
bazel_dep(name = "protobuf", version = "31.1")
1111
bazel_dep(name = "rules_cc", version = "0.2.1") # For fixer
12-
bazel_dep(name = "toolchains_protoc", version = "0.4.3")
12+
bazel_dep(name = "toolchains_protoc", version = "0.5.0")

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.3")
155+
var cppModuleSuffixLines = `bazel_dep(name = "toolchains_protoc", version = "0.5.0")
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)