Skip to content

Commit 69962d8

Browse files
committed
Update the getting started documentation
1 parent 4571dc0 commit 69962d8

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/en/client/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ This section assumes that you have already defined and generated your [Protobuf
100100
### Explaining the Client Components
101101

102102
The following list contains all features that you might encounter on the client side.
103-
If you don't wish to use any advanced features, then the first element is probably all you need to use.
103+
If you don't wish to use any advanced features, then the first two elements are probably all you need to use.
104104

105105
- [`@GrpcClient`](https://javadoc.io/page/net.devh/grpc-client-spring-boot-autoconfigure/latest/net/devh/boot/grpc/client/inject/GrpcClient.html):
106106
The annotation that marks fields and setters for auto injection of clients.

docs/en/server/getting-started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ We recommend splitting your project into 2-3 separate modules.
4646

4747
````xml
4848
<properties>
49-
<protobuf.version>3.14.0</protobuf.version>
49+
<protobuf.version>3.19.1</protobuf.version>
5050
<protobuf-plugin.version>0.6.1</protobuf-plugin.version>
51-
<grpc.version>1.35.0</grpc.version>
51+
<grpc.version>1.42.1</grpc.version>
5252
</properties>
5353

5454
<dependencies>
@@ -76,7 +76,7 @@ We recommend splitting your project into 2-3 separate modules.
7676
<extension>
7777
<groupId>kr.motd.maven</groupId>
7878
<artifactId>os-maven-plugin</artifactId>
79-
<version>1.6.2</version>
79+
<version>1.7.0</version>
8080
</extension>
8181
</extensions>
8282

@@ -108,9 +108,9 @@ We recommend splitting your project into 2-3 separate modules.
108108
````gradle
109109
buildscript {
110110
ext {
111-
protobufVersion = '3.14.0'
112-
protobufPluginVersion = '0.8.14'
113-
grpcVersion = '1.35.0'
111+
protobufVersion = '3.19.1'
112+
protobufPluginVersion = '0.8.18'
113+
grpcVersion = '1.42.1'
114114
}
115115
}
116116

0 commit comments

Comments
 (0)