diff --git a/README.md b/README.md index b4337f1..e1efbde 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.5.0 + 0.6.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.5.0") + implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.6.0-SNAPSHOT") } ``` diff --git a/pom.xml b/pom.xml index 12ef52d..502f884 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.springframework.grpc spring-grpc - 0.5.0 + 0.6.0-SNAPSHOT pom https://github.com/spring-projects-experimental/spring-grpc diff --git a/samples/grpc-client/build.gradle b/samples/grpc-client/build.gradle index a073579..dfa0443 100644 --- a/samples/grpc-client/build.gradle +++ b/samples/grpc-client/build.gradle @@ -6,7 +6,7 @@ plugins { } group = 'com.example' -version = '0.5.0' +version = '0.6.0-SNAPSHOT' java { toolchain { @@ -23,7 +23,7 @@ repositories { dependencyManagement { imports { - mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0' + mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.6.0-SNAPSHOT' } } diff --git a/samples/grpc-client/pom.xml b/samples/grpc-client/pom.xml index 6141afa..e5e5a70 100644 --- a/samples/grpc-client/pom.xml +++ b/samples/grpc-client/pom.xml @@ -11,7 +11,7 @@ org.springframework.grpc grpc-client-sample - 0.5.0 + 0.6.0-SNAPSHOT Spring gRPC Server Sample Demo project for Spring gRPC @@ -40,7 +40,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.5.0 + 0.6.0-SNAPSHOT pom import diff --git a/samples/grpc-client/src/test/java/org/springframework/grpc/sample/GrpcClientApplicationTests.java b/samples/grpc-client/src/test/java/org/springframework/grpc/sample/GrpcClientApplicationTests.java index 51b5730..59505f0 100644 --- a/samples/grpc-client/src/test/java/org/springframework/grpc/sample/GrpcClientApplicationTests.java +++ b/samples/grpc-client/src/test/java/org/springframework/grpc/sample/GrpcClientApplicationTests.java @@ -26,7 +26,7 @@ public class GrpcClientApplicationTests { } static boolean serverJarAvailable() { - return new File("../grpc-server/target/grpc-server-sample-0.5.0.jar").exists(); + return new File("../grpc-server/target/grpc-server-sample-0.6.0-SNAPSHOT.jar").exists(); } @Test @@ -42,7 +42,7 @@ public class GrpcClientApplicationTests { static CommonsExecWebServerFactoryBean grpcServer() { return CommonsExecWebServerFactoryBean.builder() .classpath(classpath -> classpath - .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.5.0")) + .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.6.0-SNAPSHOT")) .files("target/test-classes")); } diff --git a/samples/grpc-oauth2/build.gradle b/samples/grpc-oauth2/build.gradle index 97420cb..1188373 100644 --- a/samples/grpc-oauth2/build.gradle +++ b/samples/grpc-oauth2/build.gradle @@ -7,7 +7,7 @@ plugins { } group = 'com.example' -version = '0.5.0' +version = '0.6.0-SNAPSHOT' java { toolchain { @@ -23,7 +23,7 @@ repositories { dependencyManagement { imports { - mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0' + mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.6.0-SNAPSHOT' } } diff --git a/samples/grpc-oauth2/pom.xml b/samples/grpc-oauth2/pom.xml index 1e80b4b..720f42e 100644 --- a/samples/grpc-oauth2/pom.xml +++ b/samples/grpc-oauth2/pom.xml @@ -11,7 +11,7 @@ org.springframework.grpc grpc-oauth2-sample - 0.5.0 + 0.6.0-SNAPSHOT Spring gRPC OAuth2 Server Sample Demo project for Spring gRPC @@ -38,7 +38,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.5.0 + 0.6.0-SNAPSHOT pom import diff --git a/samples/grpc-reactive/build.gradle b/samples/grpc-reactive/build.gradle index 9e5be6b..b8cdee6 100644 --- a/samples/grpc-reactive/build.gradle +++ b/samples/grpc-reactive/build.gradle @@ -7,7 +7,7 @@ plugins { } group = 'com.example' -version = '0.5.0' +version = '0.6.0-SNAPSHOT' java { toolchain { @@ -23,7 +23,7 @@ repositories { dependencyManagement { imports { - mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0' + mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.6.0-SNAPSHOT' } } diff --git a/samples/grpc-reactive/pom.xml b/samples/grpc-reactive/pom.xml index a2d1354..38eb0ed 100644 --- a/samples/grpc-reactive/pom.xml +++ b/samples/grpc-reactive/pom.xml @@ -11,7 +11,7 @@ org.springframework.grpc grpc-reactive-sample - 0.5.0 + 0.6.0-SNAPSHOT Spring gRPC Reactive Sample Demo project for Spring gRPC @@ -38,7 +38,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.5.0 + 0.6.0-SNAPSHOT pom import diff --git a/samples/grpc-secure/build.gradle b/samples/grpc-secure/build.gradle index 76f652b..ac968c5 100644 --- a/samples/grpc-secure/build.gradle +++ b/samples/grpc-secure/build.gradle @@ -7,7 +7,7 @@ plugins { } group = 'com.example' -version = '0.5.0' +version = '0.6.0-SNAPSHOT' java { toolchain { @@ -23,7 +23,7 @@ repositories { dependencyManagement { imports { - mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0' + mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.6.0-SNAPSHOT' } } diff --git a/samples/grpc-secure/pom.xml b/samples/grpc-secure/pom.xml index eb66b5f..1eb7b6b 100644 --- a/samples/grpc-secure/pom.xml +++ b/samples/grpc-secure/pom.xml @@ -11,7 +11,7 @@ org.springframework.grpc grpc-secure-sample - 0.5.0 + 0.6.0-SNAPSHOT Spring gRPC Server Sample Demo project for Spring gRPC @@ -38,7 +38,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.5.0 + 0.6.0-SNAPSHOT pom import diff --git a/samples/grpc-server-netty-shaded/build.gradle b/samples/grpc-server-netty-shaded/build.gradle index c5ad07c..f692f2b 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.5.0' +version = '0.6.0-SNAPSHOT' java { toolchain { @@ -23,7 +23,7 @@ repositories { dependencyManagement { imports { - mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0' + mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.6.0-SNAPSHOT' } } diff --git a/samples/grpc-server-netty-shaded/pom.xml b/samples/grpc-server-netty-shaded/pom.xml index d05f69c..71567be 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.5.0 + 0.6.0-SNAPSHOT Spring gRPC Server Sample Netty Shaded Demo project for Spring Boot @@ -25,7 +25,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.5.0 + 0.6.0-SNAPSHOT pom import diff --git a/samples/grpc-server/build.gradle b/samples/grpc-server/build.gradle index 0910565..275739d 100644 --- a/samples/grpc-server/build.gradle +++ b/samples/grpc-server/build.gradle @@ -7,7 +7,7 @@ plugins { } group = 'com.example' -version = '0.5.0' +version = '0.6.0-SNAPSHOT' java { toolchain { @@ -23,7 +23,7 @@ repositories { dependencyManagement { imports { - mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0' + mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.6.0-SNAPSHOT' } } diff --git a/samples/grpc-server/pom.xml b/samples/grpc-server/pom.xml index ba4250e..c6f998a 100644 --- a/samples/grpc-server/pom.xml +++ b/samples/grpc-server/pom.xml @@ -11,7 +11,7 @@ org.springframework.grpc grpc-server-sample - 0.5.0 + 0.6.0-SNAPSHOT Spring gRPC Server Sample Demo project for Spring gRPC @@ -38,7 +38,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.5.0 + 0.6.0-SNAPSHOT pom import diff --git a/samples/grpc-tomcat-secure/build.gradle b/samples/grpc-tomcat-secure/build.gradle index 247bfb0..1ddea71 100644 --- a/samples/grpc-tomcat-secure/build.gradle +++ b/samples/grpc-tomcat-secure/build.gradle @@ -7,7 +7,7 @@ plugins { } group = 'com.example' -version = '0.5.0' +version = '0.6.0-SNAPSHOT' java { toolchain { @@ -23,7 +23,7 @@ repositories { dependencyManagement { imports { - mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0' + mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.6.0-SNAPSHOT' } } diff --git a/samples/grpc-tomcat-secure/pom.xml b/samples/grpc-tomcat-secure/pom.xml index 903d319..765c8dd 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.5.0 + 0.6.0-SNAPSHOT Spring gRPC Server Sample Demo project for Spring gRPC @@ -38,7 +38,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.5.0 + 0.6.0-SNAPSHOT pom import diff --git a/samples/grpc-tomcat/build.gradle b/samples/grpc-tomcat/build.gradle index 284303c..5df54d6 100644 --- a/samples/grpc-tomcat/build.gradle +++ b/samples/grpc-tomcat/build.gradle @@ -7,7 +7,7 @@ plugins { } group = 'com.example' -version = '0.5.0' +version = '0.6.0-SNAPSHOT' java { toolchain { @@ -23,7 +23,7 @@ repositories { dependencyManagement { imports { - mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0' + mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.6.0-SNAPSHOT' } } diff --git a/samples/grpc-tomcat/pom.xml b/samples/grpc-tomcat/pom.xml index b7066f3..20e53f1 100644 --- a/samples/grpc-tomcat/pom.xml +++ b/samples/grpc-tomcat/pom.xml @@ -11,7 +11,7 @@ org.springframework.grpc grpc-tomcat-sample - 0.5.0 + 0.6.0-SNAPSHOT Spring gRPC Server Sample Demo project for Spring gRPC @@ -38,7 +38,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.5.0 + 0.6.0-SNAPSHOT pom import diff --git a/samples/grpc-webflux/build.gradle b/samples/grpc-webflux/build.gradle index ffa2719..541a3c7 100644 --- a/samples/grpc-webflux/build.gradle +++ b/samples/grpc-webflux/build.gradle @@ -7,7 +7,7 @@ plugins { } group = 'com.example' -version = '0.5.0' +version = '0.6.0-SNAPSHOT' java { toolchain { @@ -23,7 +23,7 @@ repositories { dependencyManagement { imports { - mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0' + mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.6.0-SNAPSHOT' } } diff --git a/samples/grpc-webflux/pom.xml b/samples/grpc-webflux/pom.xml index e675e46..0f7acf0 100644 --- a/samples/grpc-webflux/pom.xml +++ b/samples/grpc-webflux/pom.xml @@ -11,7 +11,7 @@ org.springframework.grpc grpc-webflux-sample - 0.5.0 + 0.6.0-SNAPSHOT Spring gRPC Server Sample Demo project for Spring gRPC @@ -38,7 +38,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.5.0 + 0.6.0-SNAPSHOT pom import diff --git a/samples/pom.xml b/samples/pom.xml index b6d21d1..ead5b5c 100644 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -6,12 +6,12 @@ org.springframework.grpc spring-grpc - 0.5.0 + 0.6.0-SNAPSHOT org.springframework.grpc parent-samples - 0.5.0 + 0.6.0-SNAPSHOT pom Parent Demo diff --git a/spring-grpc-build-dependencies/pom.xml b/spring-grpc-build-dependencies/pom.xml index 6ceba94..89afa9b 100644 --- a/spring-grpc-build-dependencies/pom.xml +++ b/spring-grpc-build-dependencies/pom.xml @@ -6,7 +6,7 @@ org.springframework.grpc spring-grpc-build-dependencies - 0.5.0 + 0.6.0-SNAPSHOT pom Spring gRPC build dependencies diff --git a/spring-grpc-client-spring-boot-starter/pom.xml b/spring-grpc-client-spring-boot-starter/pom.xml index 696c87e..b7c0b31 100644 --- a/spring-grpc-client-spring-boot-starter/pom.xml +++ b/spring-grpc-client-spring-boot-starter/pom.xml @@ -6,7 +6,7 @@ org.springframework.grpc spring-grpc - 0.5.0 + 0.6.0-SNAPSHOT spring-grpc-client-spring-boot-starter jar diff --git a/spring-grpc-core/pom.xml b/spring-grpc-core/pom.xml index d09bd4f..993ad48 100644 --- a/spring-grpc-core/pom.xml +++ b/spring-grpc-core/pom.xml @@ -6,7 +6,7 @@ org.springframework.grpc spring-grpc - 0.5.0 + 0.6.0-SNAPSHOT spring-grpc-core jar diff --git a/spring-grpc-dependencies/pom.xml b/spring-grpc-dependencies/pom.xml index c64b6ce..2208cb0 100644 --- a/spring-grpc-dependencies/pom.xml +++ b/spring-grpc-dependencies/pom.xml @@ -6,7 +6,7 @@ org.springframework.grpc spring-grpc-dependencies - 0.5.0 + 0.6.0-SNAPSHOT pom Spring gRPC (Bill of Materials) diff --git a/spring-grpc-docs/pom.xml b/spring-grpc-docs/pom.xml index c6d5bcf..2f85ad5 100644 --- a/spring-grpc-docs/pom.xml +++ b/spring-grpc-docs/pom.xml @@ -6,7 +6,7 @@ org.springframework.grpc spring-grpc - 0.5.0 + 0.6.0-SNAPSHOT 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 ad08f65..d35db46 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.5.0 + 0.6.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.5.0") + implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.6.0-SNAPSHOT") } ---- diff --git a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/whats-new.adoc b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/whats-new.adoc index 9973115..44fe7db 100644 --- a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/whats-new.adoc +++ b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/whats-new.adoc @@ -3,9 +3,9 @@ :page-section-summary-toc: 1 [[what-s-new-in-0-4-0-since-0-3-0]] -== What's New in 0.5.0 Since 0.3.0 +== What's New in 0.6.0-SNAPSHOT Since 0.3.0 -This section covers the changes made from version 0.3.0 to version 0.5.0. +This section covers the changes made from version 0.3.0 to version 0.6.0-SNAPSHOT. === Fine-grained starter modules The following fine-grained Spring Boot starter modules have been added: diff --git a/spring-grpc-server-spring-boot-starter/pom.xml b/spring-grpc-server-spring-boot-starter/pom.xml index cf29725..a3084eb 100644 --- a/spring-grpc-server-spring-boot-starter/pom.xml +++ b/spring-grpc-server-spring-boot-starter/pom.xml @@ -6,7 +6,7 @@ org.springframework.grpc spring-grpc - 0.5.0 + 0.6.0-SNAPSHOT spring-grpc-server-spring-boot-starter jar diff --git a/spring-grpc-server-web-spring-boot-starter/pom.xml b/spring-grpc-server-web-spring-boot-starter/pom.xml index 691de8c..8f14e51 100644 --- a/spring-grpc-server-web-spring-boot-starter/pom.xml +++ b/spring-grpc-server-web-spring-boot-starter/pom.xml @@ -6,7 +6,7 @@ org.springframework.grpc spring-grpc - 0.5.0 + 0.6.0-SNAPSHOT spring-grpc-server-web-spring-boot-starter jar diff --git a/spring-grpc-spring-boot-autoconfigure/pom.xml b/spring-grpc-spring-boot-autoconfigure/pom.xml index 472dbee..3487209 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.5.0 + 0.6.0-SNAPSHOT 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 5484464..cb3775d 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.5.0 + 0.6.0-SNAPSHOT spring-grpc-spring-boot-starter jar diff --git a/spring-grpc-test/pom.xml b/spring-grpc-test/pom.xml index acac92d..3a698e1 100644 --- a/spring-grpc-test/pom.xml +++ b/spring-grpc-test/pom.xml @@ -6,7 +6,7 @@ org.springframework.grpc spring-grpc - 0.5.0 + 0.6.0-SNAPSHOT spring-grpc-test Spring gRPC Test