Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `rules_proto (v2)`
# `rules_proto (v3)`

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

# Table of Contents

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

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

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

| Rule | Description |
| --------------- | ------------------------------------------------------- |
|-----------------|---------------------------------------------------------|
| `proto_compile` | Executes the `protoc` tool. |
| `proto_plugin` | Provides static `protoc` plugin-specific configuration. |

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

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

| Plugin |
| ------------------------------------------------------------------------------------------------- |
|---------------------------------------------------------------------------------------------------|
| [stackb:rules_proto:grpc_cc_library](pkg/rule/rules_cc/grpc_cc_library.go) |
| [stackb:rules_proto:grpc_closure_js_library](pkg/rule/rules_closure/grpc_closure_js_library.go) |
| [stackb:rules_proto:grpc_java_library](pkg/rule/rules_java/grpc_java_library.go) |
Expand Down