Skip to content

Commit 1036f96

Browse files
Update versions of io.grpc dependencies to match what's in gradle config.
Also change from importing grpc-protobuf to grpc-api since our sample code depends directly on classes in grpc-api (e.g. ManagedChannel), not on protobuf.
1 parent 27e83cf commit 1036f96

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ Most commonly, if you are using [Maven] you can add the following to your pom.xm
5555
</dependency>
5656
<dependency>
5757
<groupId>io.grpc</groupId>
58-
<artifactId>grpc-protobuf</artifactId>
59-
<version>1.66.0</version>
58+
<artifactId>grpc-api</artifactId>
59+
<version>1.71.0</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>io.grpc</groupId>
6363
<artifactId>grpc-stub</artifactId>
64-
<version>1.66.0</version>
64+
<version>1.71.0</version>
6565
</dependency>
6666
</dependencies>
6767
```
@@ -71,8 +71,8 @@ If you are using [Gradle] then add the following to your `build.gradle` file:
7171
```groovy
7272
dependencies {
7373
implementation "com.authzed.api:authzed:v1.0.0"
74-
implementation 'io.grpc:grpc-protobuf:1.66.0'
75-
implementation 'io.grpc:grpc-stub:1.66.0'
74+
implementation 'io.grpc:grpc-api:1.71.0'
75+
implementation 'io.grpc:grpc-stub:1.71.0'
7676
}
7777
```
7878

0 commit comments

Comments
 (0)