diff --git a/README.md b/README.md
index c670ba2e..ebf5a28b 100644
--- a/README.md
+++ b/README.md
@@ -211,7 +211,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
import
@@ -225,7 +225,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:1.0.0")
+ implementation platform("org.springframework.grpc:spring-grpc-dependencies:1.0.1-SNAPSHOT")
}
```
diff --git a/pom.xml b/pom.xml
index 7ad45ee9..e0ba7ad0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
org.springframework.grpc
spring-grpc
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
https://github.com/spring-projects/spring-grpc
diff --git a/samples/grpc-client/build.gradle b/samples/grpc-client/build.gradle
index b5416cb3..ab49918b 100644
--- a/samples/grpc-client/build.gradle
+++ b/samples/grpc-client/build.gradle
@@ -6,7 +6,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0'
+version = '1.0.1-SNAPSHOT'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -28,7 +28,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.1-SNAPSHOT'
dependencyManagement {
imports {
diff --git a/samples/grpc-client/pom.xml b/samples/grpc-client/pom.xml
index 032e1e62..0eb10546 100644
--- a/samples/grpc-client/pom.xml
+++ b/samples/grpc-client/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-client-sample
- 1.0.0
+ 1.0.1-SNAPSHOT
Spring gRPC Client Sample
Demo project for Spring gRPC
@@ -40,7 +40,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0
+ 1.0.1-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 f9118c3f..12b23b92 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
@@ -34,7 +34,7 @@ public class DefaultDeadlineSetupTests {
class Deadline {
static boolean serverJarAvailable() {
- return new File("../grpc-server/target/grpc-server-sample-1.0.0.jar").exists();
+ return new File("../grpc-server/target/grpc-server-sample-1.0.1-SNAPSHOT.jar").exists();
}
@Test
@@ -51,7 +51,7 @@ static class ExtraConfiguration {
static CommonsExecWebServerFactoryBean grpcServer() {
return CommonsExecWebServerFactoryBean.builder()
.classpath(classpath -> classpath
- .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.0"))
+ .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.1-SNAPSHOT"))
.entries(MavenClasspathEntry.springBootDependency("spring-boot-web-server"))
.files("target/test-classes"));
}
@@ -82,7 +82,7 @@ public CommandLineRunner otherRunner(SimpleGrpc.SimpleBlockingStub stub) {
class WithoutDeadline {
static boolean serverJarAvailable() {
- return new File("../grpc-server/target/grpc-server-sample-1.0.0.jar").exists();
+ return new File("../grpc-server/target/grpc-server-sample-1.0.1-SNAPSHOT.jar").exists();
}
@Test
@@ -99,7 +99,7 @@ static class ExtraConfiguration {
static CommonsExecWebServerFactoryBean grpcServer() {
return CommonsExecWebServerFactoryBean.builder()
.classpath(classpath -> classpath
- .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.0"))
+ .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.1-SNAPSHOT"))
.entries(MavenClasspathEntry.springBootDependency("spring-boot-web-server"))
.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 29d27b9a..8e9be9c9 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 static void main(String[] args) {
}
static boolean serverJarAvailable() {
- return new File("../grpc-server/target/grpc-server-sample-1.0.0.jar").exists();
+ return new File("../grpc-server/target/grpc-server-sample-1.0.1-SNAPSHOT.jar").exists();
}
@Test
@@ -42,7 +42,7 @@ static class ExtraConfiguration {
static CommonsExecWebServerFactoryBean grpcServer() {
return CommonsExecWebServerFactoryBean.builder()
.classpath(classpath -> classpath
- .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.0"))
+ .entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:1.0.1-SNAPSHOT"))
.entries(MavenClasspathEntry.springBootDependency("spring-boot-web-server"))
.files("target/test-classes"));
}
diff --git a/samples/grpc-oauth2/build.gradle b/samples/grpc-oauth2/build.gradle
index 66ad39fc..380d3cb2 100644
--- a/samples/grpc-oauth2/build.gradle
+++ b/samples/grpc-oauth2/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0'
+version = '1.0.1-SNAPSHOT'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -33,7 +33,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.1-SNAPSHOT'
dependencyManagement {
imports {
diff --git a/samples/grpc-oauth2/pom.xml b/samples/grpc-oauth2/pom.xml
index 23eac8c4..be2fadc6 100644
--- a/samples/grpc-oauth2/pom.xml
+++ b/samples/grpc-oauth2/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-oauth2-sample
- 1.0.0
+ 1.0.1-SNAPSHOT
Spring gRPC OAuth2 Server Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
import
diff --git a/samples/grpc-reactive/build.gradle b/samples/grpc-reactive/build.gradle
index b59148ab..61f9fb94 100644
--- a/samples/grpc-reactive/build.gradle
+++ b/samples/grpc-reactive/build.gradle
@@ -6,7 +6,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0'
+version = '1.0.1-SNAPSHOT'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -28,7 +28,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.1-SNAPSHOT'
dependencyManagement {
imports {
diff --git a/samples/grpc-reactive/pom.xml b/samples/grpc-reactive/pom.xml
index 445eb990..82059a37 100644
--- a/samples/grpc-reactive/pom.xml
+++ b/samples/grpc-reactive/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-reactive-sample
- 1.0.0
+ 1.0.1-SNAPSHOT
Spring gRPC Reactive Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
import
diff --git a/samples/grpc-secure/build.gradle b/samples/grpc-secure/build.gradle
index f42a3954..60818a5a 100644
--- a/samples/grpc-secure/build.gradle
+++ b/samples/grpc-secure/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0'
+version = '1.0.1-SNAPSHOT'
java {
toolchain {
@@ -24,7 +24,7 @@ repositories {
dependencyManagement {
imports {
- mavenBom 'org.springframework.grpc:spring-grpc-dependencies:1.0.0'
+ mavenBom 'org.springframework.grpc:spring-grpc-dependencies:1.0.1-SNAPSHOT'
}
}
diff --git a/samples/grpc-secure/pom.xml b/samples/grpc-secure/pom.xml
index da4db170..55f42575 100644
--- a/samples/grpc-secure/pom.xml
+++ b/samples/grpc-secure/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-secure-sample
- 1.0.0
+ 1.0.1-SNAPSHOT
Spring gRPC Secure Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
import
diff --git a/samples/grpc-server-kotlin/HELP-gradle.md b/samples/grpc-server-kotlin/HELP-gradle.md
index 45aed230..cb7bbb27 100644
--- a/samples/grpc-server-kotlin/HELP-gradle.md
+++ b/samples/grpc-server-kotlin/HELP-gradle.md
@@ -34,7 +34,7 @@ $ ./gradlew bootBuildImage
Then, you can run the app like any other container:
```
-$ docker run --rm grpc-server:1.0.0
+$ docker run --rm grpc-server:1.0.1-SNAPSHOT
```
### Executable with Native Build Tools
diff --git a/samples/grpc-server-kotlin/HELP-maven.md b/samples/grpc-server-kotlin/HELP-maven.md
index 3d94b039..fa2c93e9 100644
--- a/samples/grpc-server-kotlin/HELP-maven.md
+++ b/samples/grpc-server-kotlin/HELP-maven.md
@@ -33,7 +33,7 @@ $ ./mvnw spring-boot:build-image -Pnative
Then, you can run the app like any other container:
```
-$ docker run --rm grpc-server-sample:1.0.0
+$ docker run --rm grpc-server-sample:1.0.1-SNAPSHOT
```
### Executable with Native Build Tools
diff --git a/samples/grpc-server-kotlin/build.gradle b/samples/grpc-server-kotlin/build.gradle
index 4c66f2c2..86822149 100644
--- a/samples/grpc-server-kotlin/build.gradle
+++ b/samples/grpc-server-kotlin/build.gradle
@@ -8,7 +8,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0'
+version = '1.0.1-SNAPSHOT'
def toolchainVersion() {
// Highest jvm supported is 24
@@ -32,7 +32,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.1-SNAPSHOT'
dependencyManagement {
imports {
diff --git a/samples/grpc-server-kotlin/pom.xml b/samples/grpc-server-kotlin/pom.xml
index 3a21361e..47be2902 100644
--- a/samples/grpc-server-kotlin/pom.xml
+++ b/samples/grpc-server-kotlin/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-server-kotlin-sample
- 1.0.0
+ 1.0.1-SNAPSHOT
Spring gRPC Kotlin Server Sample
Demo project for Spring gRPC
@@ -40,7 +40,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
import
diff --git a/samples/grpc-server-netty-shaded/build.gradle b/samples/grpc-server-netty-shaded/build.gradle
index f62fd3ef..228f1bb5 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 = '1.0.0'
+version = '1.0.1-SNAPSHOT'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -29,7 +29,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.1-SNAPSHOT'
dependencyManagement {
imports {
diff --git a/samples/grpc-server-netty-shaded/pom.xml b/samples/grpc-server-netty-shaded/pom.xml
index 65f420e2..253fdd59 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
- 1.0.0
+ 1.0.1-SNAPSHOT
Spring gRPC Server Sample Netty Shaded
Demo project for Spring Boot
@@ -25,7 +25,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
import
diff --git a/samples/grpc-server/HELP-gradle.md b/samples/grpc-server/HELP-gradle.md
index 45aed230..cb7bbb27 100644
--- a/samples/grpc-server/HELP-gradle.md
+++ b/samples/grpc-server/HELP-gradle.md
@@ -34,7 +34,7 @@ $ ./gradlew bootBuildImage
Then, you can run the app like any other container:
```
-$ docker run --rm grpc-server:1.0.0
+$ docker run --rm grpc-server:1.0.1-SNAPSHOT
```
### Executable with Native Build Tools
diff --git a/samples/grpc-server/HELP-maven.md b/samples/grpc-server/HELP-maven.md
index 3d94b039..fa2c93e9 100644
--- a/samples/grpc-server/HELP-maven.md
+++ b/samples/grpc-server/HELP-maven.md
@@ -33,7 +33,7 @@ $ ./mvnw spring-boot:build-image -Pnative
Then, you can run the app like any other container:
```
-$ docker run --rm grpc-server-sample:1.0.0
+$ docker run --rm grpc-server-sample:1.0.1-SNAPSHOT
```
### Executable with Native Build Tools
diff --git a/samples/grpc-server/build.gradle b/samples/grpc-server/build.gradle
index 230da0da..f6566cb3 100644
--- a/samples/grpc-server/build.gradle
+++ b/samples/grpc-server/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0'
+version = '1.0.1-SNAPSHOT'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -29,7 +29,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.1-SNAPSHOT'
dependencyManagement {
imports {
diff --git a/samples/grpc-server/pom.xml b/samples/grpc-server/pom.xml
index 5253692b..fc82e3b0 100644
--- a/samples/grpc-server/pom.xml
+++ b/samples/grpc-server/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-server-sample
- 1.0.0
+ 1.0.1-SNAPSHOT
Spring gRPC Server Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
import
diff --git a/samples/grpc-tomcat-secure/build.gradle b/samples/grpc-tomcat-secure/build.gradle
index 538af8e5..dcb41016 100644
--- a/samples/grpc-tomcat-secure/build.gradle
+++ b/samples/grpc-tomcat-secure/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0'
+version = '1.0.1-SNAPSHOT'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -29,7 +29,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.1-SNAPSHOT'
dependencyManagement {
imports {
diff --git a/samples/grpc-tomcat-secure/pom.xml b/samples/grpc-tomcat-secure/pom.xml
index 1cbbe525..02b0e82d 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
- 1.0.0
+ 1.0.1-SNAPSHOT
Spring gRPC Tomcat Secure Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
import
diff --git a/samples/grpc-tomcat/build.gradle b/samples/grpc-tomcat/build.gradle
index 9ab27041..87ef23db 100644
--- a/samples/grpc-tomcat/build.gradle
+++ b/samples/grpc-tomcat/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0'
+version = '1.0.1-SNAPSHOT'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -29,7 +29,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.1-SNAPSHOT'
dependencyManagement {
imports {
diff --git a/samples/grpc-tomcat/pom.xml b/samples/grpc-tomcat/pom.xml
index da8b0fe1..456c66a1 100644
--- a/samples/grpc-tomcat/pom.xml
+++ b/samples/grpc-tomcat/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-tomcat-sample
- 1.0.0
+ 1.0.1-SNAPSHOT
Spring gRPC Tomcat Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
import
diff --git a/samples/grpc-webflux-secure/build.gradle b/samples/grpc-webflux-secure/build.gradle
index fa3c3eab..2f56950b 100644
--- a/samples/grpc-webflux-secure/build.gradle
+++ b/samples/grpc-webflux-secure/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0'
+version = '1.0.1-SNAPSHOT'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -33,7 +33,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.1-SNAPSHOT'
dependencyManagement {
imports {
diff --git a/samples/grpc-webflux-secure/pom.xml b/samples/grpc-webflux-secure/pom.xml
index 32eb0aec..e4f0e017 100644
--- a/samples/grpc-webflux-secure/pom.xml
+++ b/samples/grpc-webflux-secure/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-webflux-sample-secure
- 1.0.0
+ 1.0.1-SNAPSHOT
Spring gRPC Webflux Sample Secure
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
import
diff --git a/samples/grpc-webflux/build.gradle b/samples/grpc-webflux/build.gradle
index 474cfbad..749e842e 100644
--- a/samples/grpc-webflux/build.gradle
+++ b/samples/grpc-webflux/build.gradle
@@ -7,7 +7,7 @@ plugins {
}
group = 'com.example'
-version = '1.0.0'
+version = '1.0.1-SNAPSHOT'
def toolchainVersion() {
if (project.hasProperty('testToolchain')) {
@@ -29,7 +29,7 @@ repositories {
maven { url 'https://repo.spring.io/snapshot' }
}
-def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.0'
+def springGrpcVersion = project.properties['springGrpcVersion'] ?: '1.0.1-SNAPSHOT'
dependencyManagement {
imports {
diff --git a/samples/grpc-webflux/pom.xml b/samples/grpc-webflux/pom.xml
index bf2e7d9d..997a66cd 100644
--- a/samples/grpc-webflux/pom.xml
+++ b/samples/grpc-webflux/pom.xml
@@ -11,7 +11,7 @@
org.springframework.grpc
grpc-webflux-sample
- 1.0.0
+ 1.0.1-SNAPSHOT
Spring gRPC Webflux Sample
Demo project for Spring gRPC
@@ -38,7 +38,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
import
diff --git a/samples/pom.xml b/samples/pom.xml
index 463811b2..62792dbd 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -6,12 +6,12 @@
org.springframework.grpc
spring-grpc
- 1.0.0
+ 1.0.1-SNAPSHOT
org.springframework.grpc
parent-samples
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
Parent Demo
diff --git a/spring-grpc-build-dependencies/pom.xml b/spring-grpc-build-dependencies/pom.xml
index 2800ef45..95bedb06 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
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
Spring gRPC build dependencies
diff --git a/spring-grpc-client-spring-boot-autoconfigure/pom.xml b/spring-grpc-client-spring-boot-autoconfigure/pom.xml
index 5b027b35..56e5d17e 100644
--- a/spring-grpc-client-spring-boot-autoconfigure/pom.xml
+++ b/spring-grpc-client-spring-boot-autoconfigure/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.0
+ 1.0.1-SNAPSHOT
spring-grpc-client-spring-boot-autoconfigure
jar
diff --git a/spring-grpc-client-spring-boot-starter/pom.xml b/spring-grpc-client-spring-boot-starter/pom.xml
index 07d94072..0fc0000b 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
- 1.0.0
+ 1.0.1-SNAPSHOT
spring-grpc-client-spring-boot-starter
jar
diff --git a/spring-grpc-core/pom.xml b/spring-grpc-core/pom.xml
index d754375c..7458e666 100644
--- a/spring-grpc-core/pom.xml
+++ b/spring-grpc-core/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.0
+ 1.0.1-SNAPSHOT
spring-grpc-core
jar
diff --git a/spring-grpc-dependencies/pom.xml b/spring-grpc-dependencies/pom.xml
index a9377c31..780fc7e1 100644
--- a/spring-grpc-dependencies/pom.xml
+++ b/spring-grpc-dependencies/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
Spring gRPC (Bill of Materials)
diff --git a/spring-grpc-docs/pom.xml b/spring-grpc-docs/pom.xml
index af36ab61..38c2b05a 100644
--- a/spring-grpc-docs/pom.xml
+++ b/spring-grpc-docs/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.0
+ 1.0.1-SNAPSHOT
spring-grpc-docs
Spring gRPC Docs
@@ -62,11 +62,11 @@
src/main/antora/antora-playbook.yml
- @antora/atlas-extension@1.0.0-alpha.1
- @antora/collector-extension@1.0.0-alpha.3
- @asciidoctor/tabs@1.0.0-beta.3
+ @antora/atlas-extension@1.0.1-SNAPSHOT-alpha.1
+ @antora/collector-extension@1.0.1-SNAPSHOT-alpha.3
+ @asciidoctor/tabs@1.0.1-SNAPSHOT-beta.3
@springio/antora-extensions@1.5.0
- @springio/asciidoctor-extensions@1.0.0-alpha.9
+ @springio/asciidoctor-extensions@1.0.1-SNAPSHOT-alpha.9
@djencks/asciidoctor-mathjax@0.0.9
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 d5500025..345b527b 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
@@ -217,7 +217,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t
org.springframework.grpc
spring-grpc-dependencies
- 1.0.0
+ 1.0.1-SNAPSHOT
pom
import
@@ -232,7 +232,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:1.0.0")
+ implementation platform("org.springframework.grpc:spring-grpc-dependencies:1.0.1-SNAPSHOT")
}
----
diff --git a/spring-grpc-server-spring-boot-autoconfigure/pom.xml b/spring-grpc-server-spring-boot-autoconfigure/pom.xml
index 647a15c2..bcc4e988 100644
--- a/spring-grpc-server-spring-boot-autoconfigure/pom.xml
+++ b/spring-grpc-server-spring-boot-autoconfigure/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.0
+ 1.0.1-SNAPSHOT
spring-grpc-server-spring-boot-autoconfigure
jar
diff --git a/spring-grpc-server-spring-boot-starter/pom.xml b/spring-grpc-server-spring-boot-starter/pom.xml
index c767673e..036ea001 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
- 1.0.0
+ 1.0.1-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 53977574..de5412e5 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
- 1.0.0
+ 1.0.1-SNAPSHOT
spring-grpc-server-web-spring-boot-starter
jar
diff --git a/spring-grpc-spring-boot-starter/pom.xml b/spring-grpc-spring-boot-starter/pom.xml
index 2c834ba1..d7bbad46 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
- 1.0.0
+ 1.0.1-SNAPSHOT
spring-grpc-spring-boot-starter
jar
diff --git a/spring-grpc-test-spring-boot-autoconfigure/pom.xml b/spring-grpc-test-spring-boot-autoconfigure/pom.xml
index 3236ac60..bd840e29 100644
--- a/spring-grpc-test-spring-boot-autoconfigure/pom.xml
+++ b/spring-grpc-test-spring-boot-autoconfigure/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.0
+ 1.0.1-SNAPSHOT
spring-grpc-test-spring-boot-autoconfigure
jar
diff --git a/spring-grpc-test/pom.xml b/spring-grpc-test/pom.xml
index 51a88bc8..b2d505c6 100644
--- a/spring-grpc-test/pom.xml
+++ b/spring-grpc-test/pom.xml
@@ -6,7 +6,7 @@
org.springframework.grpc
spring-grpc
- 1.0.0
+ 1.0.1-SNAPSHOT
spring-grpc-test
jar