diff --git a/README.md b/README.md index aa140fb..0a164e9 100644 --- a/README.md +++ b/README.md @@ -187,7 +187,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t org.springframework.grpc spring-grpc-dependencies - 0.3.0-SNAPSHOT + 0.3.0 pom import @@ -201,7 +201,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.3.0-SNAPSHOT") + implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.3.0") } ``` diff --git a/pom.xml b/pom.xml index 4fa28e0..8605fbc 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.springframework.grpc spring-grpc - 0.3.0-SNAPSHOT + 0.3.0 pom https://github.com/spring-projects-experimental/spring-grpc diff --git a/samples/grpc-server-netty-shaded/build.gradle b/samples/grpc-server-netty-shaded/build.gradle index 805724e..0aeec02 100644 --- a/samples/grpc-server-netty-shaded/build.gradle +++ b/samples/grpc-server-netty-shaded/build.gradle @@ -7,7 +7,7 @@ plugins { } group = 'com.example' -version = '0.3.0-SNAPSHOT' +version = '0.3.0' java { toolchain { @@ -24,7 +24,7 @@ repositories { dependencyManagement { imports { - mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.3.0-SNAPSHOT' + mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.3.0' } } diff --git a/samples/grpc-server-netty-shaded/pom.xml b/samples/grpc-server-netty-shaded/pom.xml index 6a0ff9b..cd861c2 100644 --- a/samples/grpc-server-netty-shaded/pom.xml +++ b/samples/grpc-server-netty-shaded/pom.xml @@ -11,7 +11,7 @@ com.example grpc-server-netty-shaded - 0.3.0-SNAPSHOT + 0.3.0 Spring gRPC Server Sample Netty Shaded Demo project for Spring Boot @@ -25,7 +25,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.3.0-SNAPSHOT + 0.3.0 pom import diff --git a/samples/grpc-server/build.gradle b/samples/grpc-server/build.gradle index 9e0a616..a210a07 100644 --- a/samples/grpc-server/build.gradle +++ b/samples/grpc-server/build.gradle @@ -7,7 +7,7 @@ plugins { } group = 'com.example' -version = '0.3.0-SNAPSHOT' +version = '0.3.0' java { toolchain { @@ -24,7 +24,7 @@ repositories { dependencyManagement { imports { - mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.3.0-SNAPSHOT' + mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.3.0' } } diff --git a/samples/grpc-server/pom.xml b/samples/grpc-server/pom.xml index 9b1b83c..b0f96f1 100644 --- a/samples/grpc-server/pom.xml +++ b/samples/grpc-server/pom.xml @@ -11,7 +11,7 @@ org.springframework.grpc grpc-server-sample - 0.3.0-SNAPSHOT + 0.3.0 Spring gRPC Server Sample Demo project for Spring gRPC @@ -38,7 +38,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.3.0-SNAPSHOT + 0.3.0 pom import diff --git a/samples/grpc-tomcat-secure/pom.xml b/samples/grpc-tomcat-secure/pom.xml index 58b9dff..43ce757 100644 --- a/samples/grpc-tomcat-secure/pom.xml +++ b/samples/grpc-tomcat-secure/pom.xml @@ -11,7 +11,7 @@ org.springframework.grpc grpc-tomcat-secure-sample - 0.3.0-SNAPSHOT + 0.3.0 Spring gRPC Server Sample Demo project for Spring gRPC @@ -38,7 +38,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.3.0-SNAPSHOT + 0.3.0 pom import diff --git a/samples/grpc-tomcat/pom.xml b/samples/grpc-tomcat/pom.xml index b4802be..5c44c40 100644 --- a/samples/grpc-tomcat/pom.xml +++ b/samples/grpc-tomcat/pom.xml @@ -11,7 +11,7 @@ org.springframework.grpc grpc-tomcat-sample - 0.3.0-SNAPSHOT + 0.3.0 Spring gRPC Server Sample Demo project for Spring gRPC @@ -38,7 +38,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.3.0-SNAPSHOT + 0.3.0 pom import diff --git a/samples/grpc-webflux/build.gradle b/samples/grpc-webflux/build.gradle index 82c03e4..306fe1b 100644 --- a/samples/grpc-webflux/build.gradle +++ b/samples/grpc-webflux/build.gradle @@ -7,7 +7,7 @@ plugins { } group = 'com.example' -version = '0.3.0-SNAPSHOT' +version = '0.3.0' java { toolchain { @@ -24,7 +24,7 @@ repositories { dependencyManagement { imports { - mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.3.0-SNAPSHOT' + mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.3.0' } } diff --git a/samples/grpc-webflux/pom.xml b/samples/grpc-webflux/pom.xml index 66049a9..4081b9d 100644 --- a/samples/grpc-webflux/pom.xml +++ b/samples/grpc-webflux/pom.xml @@ -11,7 +11,7 @@ org.springframework.grpc grpc-webflux-sample - 0.3.0-SNAPSHOT + 0.3.0 Spring gRPC Server Sample Demo project for Spring gRPC @@ -38,7 +38,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.3.0-SNAPSHOT + 0.3.0 pom import diff --git a/samples/pom.xml b/samples/pom.xml index cd413f8..b7201b2 100644 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -6,12 +6,12 @@ org.springframework.grpc spring-grpc - 0.3.0-SNAPSHOT + 0.3.0 org.springframework.grpc parent-samples - 0.3.0-SNAPSHOT + 0.3.0 pom Parent Demo diff --git a/spring-grpc-core/pom.xml b/spring-grpc-core/pom.xml index 08bee50..59a131a 100644 --- a/spring-grpc-core/pom.xml +++ b/spring-grpc-core/pom.xml @@ -6,7 +6,7 @@ org.springframework.grpc spring-grpc - 0.3.0-SNAPSHOT + 0.3.0 spring-grpc-core jar diff --git a/spring-grpc-dependencies/pom.xml b/spring-grpc-dependencies/pom.xml index dab5cdb..4ad0e2d 100644 --- a/spring-grpc-dependencies/pom.xml +++ b/spring-grpc-dependencies/pom.xml @@ -6,7 +6,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.3.0-SNAPSHOT + 0.3.0 pom Spring gRPC dependencies diff --git a/spring-grpc-docs/pom.xml b/spring-grpc-docs/pom.xml index cf3ab92..a6cdbfa 100644 --- a/spring-grpc-docs/pom.xml +++ b/spring-grpc-docs/pom.xml @@ -6,7 +6,7 @@ org.springframework.grpc spring-grpc - 0.3.0-SNAPSHOT + 0.3.0 spring-grpc-docs Spring gRPC Docs 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 64818bc..2e2a4d8 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 @@ -193,7 +193,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t org.springframework.grpc spring-grpc-dependencies - 0.3.0-SNAPSHOT + 0.3.0 pom import @@ -208,7 +208,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.3.0-SNAPSHOT") + implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.3.0") } ---- diff --git a/spring-grpc-spring-boot-autoconfigure/pom.xml b/spring-grpc-spring-boot-autoconfigure/pom.xml index b702d6e..bc6e5fe 100644 --- a/spring-grpc-spring-boot-autoconfigure/pom.xml +++ b/spring-grpc-spring-boot-autoconfigure/pom.xml @@ -6,7 +6,7 @@ org.springframework.grpc spring-grpc - 0.3.0-SNAPSHOT + 0.3.0 spring-grpc-spring-boot-autoconfigure jar diff --git a/spring-grpc-spring-boot-starter/pom.xml b/spring-grpc-spring-boot-starter/pom.xml index 91db956..245ef55 100644 --- a/spring-grpc-spring-boot-starter/pom.xml +++ b/spring-grpc-spring-boot-starter/pom.xml @@ -6,7 +6,7 @@ org.springframework.grpc spring-grpc - 0.3.0-SNAPSHOT + 0.3.0 spring-grpc-spring-boot-starter jar diff --git a/spring-grpc-test/pom.xml b/spring-grpc-test/pom.xml index 32bc412..fc12f2a 100644 --- a/spring-grpc-test/pom.xml +++ b/spring-grpc-test/pom.xml @@ -6,7 +6,7 @@ org.springframework.grpc spring-grpc - 0.3.0-SNAPSHOT + 0.3.0 spring-grpc-test Spring gRPC Test