From b507f29d4156ea13d601480d889c95af84da0b7c Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Thu, 17 Apr 2025 15:57:11 +0100 Subject: [PATCH] Fix version in docs --- README.md | 4 ++-- .../src/main/antora/modules/ROOT/pages/getting-started.adoc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 909ab4e..05493b3 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t org.springframework.grpc spring-grpc-dependencies - 0.8.0-SNAPSHOT-SNAPSHOT + 0.8.0-SNAPSHOT pom import @@ -215,7 +215,7 @@ As shown in the snippet below this can then be followed by version-less declarat ```gradle dependencies { - implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT-SNAPSHOT") + implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT") } ``` diff --git a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc index eb0205c..f497b26 100644 --- a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc +++ b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc @@ -206,7 +206,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t org.springframework.grpc spring-grpc-dependencies - 0.8.0-SNAPSHOT-SNAPSHOT + 0.8.0-SNAPSHOT pom import @@ -221,7 +221,7 @@ As shown in the snippet below this can then be followed by version-less declarat [source,gradle] ---- dependencies { - implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT-SNAPSHOT") + implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT") } ----