diff --git a/README.md b/README.md
index 59ed3bf..909ab4e 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.7.0-SNAPSHOT
+ 0.8.0-SNAPSHOT-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.7.0-SNAPSHOT")
+ implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT-SNAPSHOT")
}
```
diff --git a/pom.xml b/pom.xml
index f860b23..f66f2d2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
org.springframework.grpc
spring-grpc
- 0.7.0
+ 0.8.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 d41d40f..25c80f8 100644
--- a/samples/grpc-client/build.gradle
+++ b/samples/grpc-client/build.gradle
@@ -6,7 +6,7 @@ plugins {
}
group = 'com.example'
-version = '0.7.0'
+version = '0.8.0-SNAPSHOT'
java {
toolchain {
@@ -23,7 +23,7 @@ repositories {
dependencyManagement {
imports {
- mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
+ mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
}
}
diff --git a/samples/grpc-client/pom.xml b/samples/grpc-client/pom.xml
index df36598..88e359e 100644
--- a/samples/grpc-client/pom.xml
+++ b/samples/grpc-client/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-client-sample
- 0.7.0
+ 0.8.0-SNAPSHOT
Spring gRPC Client Sample
Demo project for Spring gRPC
@@ -40,7 +40,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 0.7.0
+ 0.8.0-SNAPSHOT
pom
import
diff --git a/samples/grpc-client/src/test/java/org/springframework/grpc/sample/DefaultDeadlineSetupTests.java b/samples/grpc-client/src/test/java/org/springframework/grpc/sample/DefaultDeadlineSetupTests.java
index 69a93a1..4aeffc8 100644
--- a/samples/grpc-client/src/test/java/org/springframework/grpc/sample/DefaultDeadlineSetupTests.java
+++ b/samples/grpc-client/src/test/java/org/springframework/grpc/sample/DefaultDeadlineSetupTests.java
@@ -35,7 +35,7 @@ public class DefaultDeadlineSetupTests {
class Deadline {
static boolean serverJarAvailable() {
- return new File("../grpc-server/target/grpc-server-sample-0.7.0.jar").exists();
+ return new File("../grpc-server/target/grpc-server-sample-0.8.0-SNAPSHOT.jar").exists();
}
@Test
@@ -52,7 +52,7 @@ public class DefaultDeadlineSetupTests {
static CommonsExecWebServerFactoryBean grpcServer() {
return CommonsExecWebServerFactoryBean.builder()
.classpath(classpath -> classpath
- .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.7.0"))
+ .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.8.0-SNAPSHOT"))
.files("target/test-classes"));
}
@@ -83,7 +83,7 @@ public class DefaultDeadlineSetupTests {
class WithoutDeadline {
static boolean serverJarAvailable() {
- return new File("../grpc-server/target/grpc-server-sample-0.7.0.jar").exists();
+ return new File("../grpc-server/target/grpc-server-sample-0.8.0-SNAPSHOT.jar").exists();
}
@Test
@@ -100,7 +100,7 @@ public class DefaultDeadlineSetupTests {
static CommonsExecWebServerFactoryBean grpcServer() {
return CommonsExecWebServerFactoryBean.builder()
.classpath(classpath -> classpath
- .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.7.0"))
+ .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.8.0-SNAPSHOT"))
.files("target/test-classes"));
}
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 34ccf1b..f0da056 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.7.0.jar").exists();
+ return new File("../grpc-server/target/grpc-server-sample-0.8.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.7.0"))
+ .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.8.0-SNAPSHOT"))
.files("target/test-classes"));
}
diff --git a/samples/grpc-oauth2/build.gradle b/samples/grpc-oauth2/build.gradle
index 9f0cdc7..fa19cd9 100644
--- a/samples/grpc-oauth2/build.gradle
+++ b/samples/grpc-oauth2/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '0.7.0'
+version = '0.8.0-SNAPSHOT'
java {
toolchain {
@@ -27,7 +27,7 @@ repositories {
dependencyManagement {
imports {
- mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
+ mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
}
}
diff --git a/samples/grpc-oauth2/pom.xml b/samples/grpc-oauth2/pom.xml
index e601fe4..1a20271 100644
--- a/samples/grpc-oauth2/pom.xml
+++ b/samples/grpc-oauth2/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-oauth2-sample
- 0.7.0
+ 0.8.0-SNAPSHOT
Spring gRPC OAuth2 Server Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 0.7.0
+ 0.8.0-SNAPSHOT
pom
import
diff --git a/samples/grpc-reactive/build.gradle b/samples/grpc-reactive/build.gradle
index 718260c..e797695 100644
--- a/samples/grpc-reactive/build.gradle
+++ b/samples/grpc-reactive/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '0.7.0'
+version = '0.8.0-SNAPSHOT'
java {
toolchain {
@@ -23,7 +23,7 @@ repositories {
dependencyManagement {
imports {
- mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
+ mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
}
}
diff --git a/samples/grpc-reactive/pom.xml b/samples/grpc-reactive/pom.xml
index eb3808c..88b84bf 100644
--- a/samples/grpc-reactive/pom.xml
+++ b/samples/grpc-reactive/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-reactive-sample
- 0.7.0
+ 0.8.0-SNAPSHOT
Spring gRPC Reactive Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 0.7.0
+ 0.8.0-SNAPSHOT
pom
import
diff --git a/samples/grpc-secure/build.gradle b/samples/grpc-secure/build.gradle
index 0967766..4d32977 100644
--- a/samples/grpc-secure/build.gradle
+++ b/samples/grpc-secure/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '0.7.0'
+version = '0.8.0-SNAPSHOT'
java {
toolchain {
@@ -23,7 +23,7 @@ repositories {
dependencyManagement {
imports {
- mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
+ mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
}
}
diff --git a/samples/grpc-secure/pom.xml b/samples/grpc-secure/pom.xml
index ac2440b..5b85029 100644
--- a/samples/grpc-secure/pom.xml
+++ b/samples/grpc-secure/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-secure-sample
- 0.7.0
+ 0.8.0-SNAPSHOT
Spring gRPC Secure Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 0.7.0
+ 0.8.0-SNAPSHOT
pom
import
diff --git a/samples/grpc-server-netty-shaded/build.gradle b/samples/grpc-server-netty-shaded/build.gradle
index 99504ef..e2c3e0e 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.7.0'
+version = '0.8.0-SNAPSHOT'
java {
toolchain {
@@ -23,7 +23,7 @@ repositories {
dependencyManagement {
imports {
- mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
+ mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
}
}
diff --git a/samples/grpc-server-netty-shaded/pom.xml b/samples/grpc-server-netty-shaded/pom.xml
index 1ae8842..e33f75a 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.7.0
+ 0.8.0-SNAPSHOT
Spring gRPC Server Sample Netty Shaded
Demo project for Spring Boot
@@ -25,7 +25,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 0.7.0
+ 0.8.0-SNAPSHOT
pom
import
diff --git a/samples/grpc-server/build.gradle b/samples/grpc-server/build.gradle
index de00bda..f55db36 100644
--- a/samples/grpc-server/build.gradle
+++ b/samples/grpc-server/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '0.7.0'
+version = '0.8.0-SNAPSHOT'
java {
toolchain {
@@ -23,7 +23,7 @@ repositories {
dependencyManagement {
imports {
- mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
+ mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
}
}
diff --git a/samples/grpc-server/pom.xml b/samples/grpc-server/pom.xml
index f26e123..9cc1641 100644
--- a/samples/grpc-server/pom.xml
+++ b/samples/grpc-server/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-server-sample
- 0.7.0
+ 0.8.0-SNAPSHOT
Spring gRPC Server Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 0.7.0
+ 0.8.0-SNAPSHOT
pom
import
diff --git a/samples/grpc-tomcat-secure/build.gradle b/samples/grpc-tomcat-secure/build.gradle
index d64e04e..5b46fba 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.7.0'
+version = '0.8.0-SNAPSHOT'
java {
toolchain {
@@ -23,7 +23,7 @@ repositories {
dependencyManagement {
imports {
- mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
+ mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
}
}
diff --git a/samples/grpc-tomcat-secure/pom.xml b/samples/grpc-tomcat-secure/pom.xml
index 1f1ccb1..cfa090a 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.7.0
+ 0.8.0-SNAPSHOT
Spring gRPC Tomcat Secure Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 0.7.0
+ 0.8.0-SNAPSHOT
pom
import
diff --git a/samples/grpc-tomcat/build.gradle b/samples/grpc-tomcat/build.gradle
index 38a63c0..a3c46f4 100644
--- a/samples/grpc-tomcat/build.gradle
+++ b/samples/grpc-tomcat/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '0.7.0'
+version = '0.8.0-SNAPSHOT'
java {
toolchain {
@@ -23,7 +23,7 @@ repositories {
dependencyManagement {
imports {
- mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
+ mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
}
}
diff --git a/samples/grpc-tomcat/pom.xml b/samples/grpc-tomcat/pom.xml
index 8189299..67ba38b 100644
--- a/samples/grpc-tomcat/pom.xml
+++ b/samples/grpc-tomcat/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-tomcat-sample
- 0.7.0
+ 0.8.0-SNAPSHOT
Spring gRPC Tomcat Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 0.7.0
+ 0.8.0-SNAPSHOT
pom
import
diff --git a/samples/grpc-webflux/build.gradle b/samples/grpc-webflux/build.gradle
index 7112c25..1156ff2 100644
--- a/samples/grpc-webflux/build.gradle
+++ b/samples/grpc-webflux/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '0.7.0'
+version = '0.8.0-SNAPSHOT'
java {
toolchain {
@@ -23,7 +23,7 @@ repositories {
dependencyManagement {
imports {
- mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.7.0'
+ mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT'
}
}
diff --git a/samples/grpc-webflux/pom.xml b/samples/grpc-webflux/pom.xml
index 15809b2..1395181 100644
--- a/samples/grpc-webflux/pom.xml
+++ b/samples/grpc-webflux/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-webflux-sample
- 0.7.0
+ 0.8.0-SNAPSHOT
Spring gRPC Webflux Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 0.7.0
+ 0.8.0-SNAPSHOT
pom
import
diff --git a/samples/pom.xml b/samples/pom.xml
index 5375322..1dabeed 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -6,12 +6,12 @@
org.springframework.grpc
spring-grpc
- 0.7.0
+ 0.8.0-SNAPSHOT
org.springframework.grpc
parent-samples
- 0.7.0
+ 0.8.0-SNAPSHOT
pom
Parent Demo
diff --git a/spring-grpc-build-dependencies/pom.xml b/spring-grpc-build-dependencies/pom.xml
index 101bad2..ec0051c 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.7.0
+ 0.8.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 0bf1b4a..3a47bba 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.7.0
+ 0.8.0-SNAPSHOT
spring-grpc-client-spring-boot-starter
jar
diff --git a/spring-grpc-core/pom.xml b/spring-grpc-core/pom.xml
index 4d38f6e..7c64d38 100644
--- a/spring-grpc-core/pom.xml
+++ b/spring-grpc-core/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 0.7.0
+ 0.8.0-SNAPSHOT
spring-grpc-core
jar
diff --git a/spring-grpc-dependencies/pom.xml b/spring-grpc-dependencies/pom.xml
index 85d9992..fd4791c 100644
--- a/spring-grpc-dependencies/pom.xml
+++ b/spring-grpc-dependencies/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 0.7.0
+ 0.8.0-SNAPSHOT
pom
Spring gRPC (Bill of Materials)
diff --git a/spring-grpc-docs/pom.xml b/spring-grpc-docs/pom.xml
index a9329b9..a13073e 100644
--- a/spring-grpc-docs/pom.xml
+++ b/spring-grpc-docs/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 0.7.0
+ 0.8.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 852a328..eb0205c 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.7.0-SNAPSHOT
+ 0.8.0-SNAPSHOT-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.7.0-SNAPSHOT")
+ implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.8.0-SNAPSHOT-SNAPSHOT")
}
----
diff --git a/spring-grpc-server-spring-boot-starter/pom.xml b/spring-grpc-server-spring-boot-starter/pom.xml
index 3186583..9d61544 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.7.0
+ 0.8.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 8c7dd8e..3d5aca1 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.7.0
+ 0.8.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 6699395..6caebaa 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.7.0
+ 0.8.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 1d8c404..92f185c 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.7.0
+ 0.8.0-SNAPSHOT
spring-grpc-spring-boot-starter
jar
diff --git a/spring-grpc-test/pom.xml b/spring-grpc-test/pom.xml
index 70b8a40..8e884c3 100644
--- a/spring-grpc-test/pom.xml
+++ b/spring-grpc-test/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 0.7.0
+ 0.8.0-SNAPSHOT
spring-grpc-test
Spring gRPC Test