Skip to content

Commit 2fce35e

Browse files
authored
Update README for v3 (#359)
1 parent 5d1fb6a commit 2fce35e

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `rules_proto (v2)`
1+
# `rules_proto (v3)`
22

33
[![Build status](https://badge.buildkite.com/5980cc1d55f96e721bd9a7bd5dc1e40a096a7c30bc13117910.svg?branch=master)](https://buildkite.com/bazel/stackb-rules-proto)
44
[![Go Reference](https://pkg.go.dev/badge/github.com/stackb/rules_proto.svg)](https://pkg.go.dev/github.com/stackb/rules_proto)
@@ -30,7 +30,7 @@ Bazel starlark rules for building protocol buffers +/- gRPC :sparkles:.
3030

3131
# Table of Contents
3232

33-
- [`rules_proto (v2)`](#rules_proto-v2)
33+
- [`rules_proto (v3)`](#rules_proto-v3)
3434
- [Table of Contents](#table-of-contents)
3535
- [Getting Started](#getting-started)
3636
- [`WORKSPACE` Boilerplate](#workspace-boilerplate)
@@ -63,16 +63,16 @@ Bazel starlark rules for building protocol buffers +/- gRPC :sparkles:.
6363
```python
6464
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
6565

66-
# Release: v2.0.1
66+
# Release: v3.0.0
6767
# TargetCommitish: master
68-
# Date: 2022-10-20 02:38:27 +0000 UTC
69-
# URL: https://github.com/stackb/rules_proto/releases/tag/v2.0.1
70-
# Size: 2071295 (2.1 MB)
68+
# Date: 2024-02-13 04:33:24 +0000 UTC
69+
# URL: https://github.com/stackb/rules_proto/releases/tag/v3.0.0
70+
# Size: 2095448 (2.1 MB)
7171
http_archive(
7272
name = "build_stack_rules_proto",
73-
sha256 = "ac7e2966a78660e83e1ba84a06db6eda9a7659a841b6a7fd93028cd8757afbfb",
74-
strip_prefix = "rules_proto-2.0.1",
75-
urls = ["https://github.com/stackb/rules_proto/archive/v2.0.1.tar.gz"],
73+
sha256 = "f8f487e2a1b4a764c0da89c4d4e88797f50392f3b3ab2f8e0c88003dbc6bc382",
74+
strip_prefix = "rules_proto-3.0.0",
75+
urls = ["https://github.com/stackb/rules_proto/archive/v3.0.0.tar.gz"],
7676
)
7777
```
7878

@@ -396,7 +396,7 @@ potential conflicts with other possible gazelle extensions, using the name
396396
The core of `stackb/rules_proto` contains two build rules:
397397

398398
| Rule | Description |
399-
| --------------- | ------------------------------------------------------- |
399+
|-----------------|---------------------------------------------------------|
400400
| `proto_compile` | Executes the `protoc` tool. |
401401
| `proto_plugin` | Provides static `protoc` plugin-specific configuration. |
402402

@@ -768,7 +768,7 @@ The plugin name is an opaque string, but by convention they are maven-esqe
768768
artifact identifiers that follow a GitHub org/repo/plugin_name convention.
769769

770770
| Plugin |
771-
| ---------------------------------------------------------------------------------------------------------------------- |
771+
|------------------------------------------------------------------------------------------------------------------------|
772772
| [builtin:cpp](pkg/plugin/builtin/cpp_plugin.go) |
773773
| [builtin:csharp](pkg/plugin/builtin/csharp_plugin.go) |
774774
| [builtin:java](pkg/plugin/builtin/java_plugin.go) |
@@ -804,7 +804,7 @@ The rule name is an opaque string, but by convention they are maven-esqe
804804
artifact identifiers that follow a GitHub org/repo/rule_name convention.
805805

806806
| Plugin |
807-
| ------------------------------------------------------------------------------------------------- |
807+
|---------------------------------------------------------------------------------------------------|
808808
| [stackb:rules_proto:grpc_cc_library](pkg/rule/rules_cc/grpc_cc_library.go) |
809809
| [stackb:rules_proto:grpc_closure_js_library](pkg/rule/rules_closure/grpc_closure_js_library.go) |
810810
| [stackb:rules_proto:grpc_java_library](pkg/rule/rules_java/grpc_java_library.go) |

0 commit comments

Comments
 (0)