Skip to content

Commit 630e776

Browse files
committed
Bump to 0.5.0
1 parent b8ff6ea commit 630e776

File tree

34 files changed

+57
-57
lines changed

34 files changed

+57
-57
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t
201201
<dependency>
202202
<groupId>org.springframework.grpc</groupId>
203203
<artifactId>spring-grpc-dependencies</artifactId>
204-
<version>0.5.0-SNAPSHOT</version>
204+
<version>0.5.0</version>
205205
<type>pom</type>
206206
<scope>import</scope>
207207
</dependency>
@@ -215,7 +215,7 @@ As shown in the snippet below this can then be followed by version-less declarat
215215

216216
```gradle
217217
dependencies {
218-
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.5.0-SNAPSHOT")
218+
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.5.0")
219219
}
220220
```
221221

Diff for: pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.springframework.grpc</groupId>
77
<artifactId>spring-grpc</artifactId>
8-
<version>0.5.0-SNAPSHOT</version>
8+
<version>0.5.0</version>
99

1010
<packaging>pom</packaging>
1111
<url>https://github.com/spring-projects-experimental/spring-grpc</url>

Diff for: samples/grpc-client/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'com.example'
9-
version = '0.4.0-SNAPSHOT'
9+
version = '0.5.0'
1010

1111
java {
1212
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.4.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0'
2727
}
2828
}
2929

Diff for: samples/grpc-client/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-client-sample</artifactId>
14-
<version>0.5.0-SNAPSHOT</version>
14+
<version>0.5.0</version>
1515
<name>Spring gRPC Server Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -40,7 +40,7 @@
4040
<dependency>
4141
<groupId>org.springframework.grpc</groupId>
4242
<artifactId>spring-grpc-dependencies</artifactId>
43-
<version>0.5.0-SNAPSHOT</version>
43+
<version>0.5.0</version>
4444
<type>pom</type>
4545
<scope>import</scope>
4646
</dependency>

Diff for: samples/grpc-client/src/test/java/org/springframework/grpc/sample/GrpcClientApplicationTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static void main(String[] args) {
2626
}
2727

2828
static boolean serverJarAvailable() {
29-
return new File("../grpc-server/target/grpc-server-sample-0.5.0-SNAPSHOT.jar").exists();
29+
return new File("../grpc-server/target/grpc-server-sample-0.5.0.jar").exists();
3030
}
3131

3232
@Test
@@ -42,7 +42,7 @@ static class ExtraConfiguration {
4242
static CommonsExecWebServerFactoryBean grpcServer() {
4343
return CommonsExecWebServerFactoryBean.builder()
4444
.classpath(classpath -> classpath
45-
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.5.0-SNAPSHOT"))
45+
.entries(new MavenClasspathEntry("org.springframework.grpc:grpc-server-sample:0.5.0"))
4646
.files("target/test-classes"));
4747
}
4848

Diff for: samples/grpc-oauth2/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.5.0-SNAPSHOT'
10+
version = '0.5.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0'
2727
}
2828
}
2929

Diff for: samples/grpc-oauth2/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-oauth2-sample</artifactId>
14-
<version>0.5.0-SNAPSHOT</version>
14+
<version>0.5.0</version>
1515
<name>Spring gRPC OAuth2 Server Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.5.0-SNAPSHOT</version>
41+
<version>0.5.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

Diff for: samples/grpc-reactive/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.5.0-SNAPSHOT'
10+
version = '0.5.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0'
2727
}
2828
}
2929

Diff for: samples/grpc-reactive/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-reactive-sample</artifactId>
14-
<version>0.5.0-SNAPSHOT</version>
14+
<version>0.5.0</version>
1515
<name>Spring gRPC Reactive Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.5.0-SNAPSHOT</version>
41+
<version>0.5.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

Diff for: samples/grpc-secure/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.5.0-SNAPSHOT'
10+
version = '0.5.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0'
2727
}
2828
}
2929

Diff for: samples/grpc-secure/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-secure-sample</artifactId>
14-
<version>0.5.0-SNAPSHOT</version>
14+
<version>0.5.0</version>
1515
<name>Spring gRPC Server Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.5.0-SNAPSHOT</version>
41+
<version>0.5.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

Diff for: samples/grpc-server-netty-shaded/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.5.0-SNAPSHOT'
10+
version = '0.5.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0'
2727
}
2828
}
2929

Diff for: samples/grpc-server-netty-shaded/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>com.example</groupId>
1313
<artifactId>grpc-server-netty-shaded</artifactId>
14-
<version>0.5.0-SNAPSHOT</version>
14+
<version>0.5.0</version>
1515
<name>Spring gRPC Server Sample Netty Shaded</name>
1616
<description>Demo project for Spring Boot</description>
1717
<properties>
@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>org.springframework.grpc</groupId>
2727
<artifactId>spring-grpc-dependencies</artifactId>
28-
<version>0.5.0-SNAPSHOT</version>
28+
<version>0.5.0</version>
2929
<type>pom</type>
3030
<scope>import</scope>
3131
</dependency>

Diff for: samples/grpc-server/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.5.0-SNAPSHOT'
10+
version = '0.5.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0'
2727
}
2828
}
2929

Diff for: samples/grpc-server/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-server-sample</artifactId>
14-
<version>0.5.0-SNAPSHOT</version>
14+
<version>0.5.0</version>
1515
<name>Spring gRPC Server Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.5.0-SNAPSHOT</version>
41+
<version>0.5.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

Diff for: samples/grpc-tomcat-secure/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.5.0-SNAPSHOT'
10+
version = '0.5.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0'
2727
}
2828
}
2929

Diff for: samples/grpc-tomcat-secure/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-tomcat-secure-sample</artifactId>
14-
<version>0.5.0-SNAPSHOT</version>
14+
<version>0.5.0</version>
1515
<name>Spring gRPC Server Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.5.0-SNAPSHOT</version>
41+
<version>0.5.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

Diff for: samples/grpc-tomcat/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.5.0-SNAPSHOT'
10+
version = '0.5.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0'
2727
}
2828
}
2929

Diff for: samples/grpc-tomcat/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-tomcat-sample</artifactId>
14-
<version>0.5.0-SNAPSHOT</version>
14+
<version>0.5.0</version>
1515
<name>Spring gRPC Server Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.5.0-SNAPSHOT</version>
41+
<version>0.5.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

Diff for: samples/grpc-webflux/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.example'
10-
version = '0.5.0-SNAPSHOT'
10+
version = '0.5.0'
1111

1212
java {
1313
toolchain {
@@ -23,7 +23,7 @@ repositories {
2323

2424
dependencyManagement {
2525
imports {
26-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0-SNAPSHOT'
26+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.5.0'
2727
}
2828
}
2929

Diff for: samples/grpc-webflux/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>grpc-webflux-sample</artifactId>
14-
<version>0.5.0-SNAPSHOT</version>
14+
<version>0.5.0</version>
1515
<name>Spring gRPC Server Sample</name>
1616
<description>Demo project for Spring gRPC</description>
1717
<url />
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.springframework.grpc</groupId>
4040
<artifactId>spring-grpc-dependencies</artifactId>
41-
<version>0.5.0-SNAPSHOT</version>
41+
<version>0.5.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

Diff for: samples/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>org.springframework.grpc</groupId>
88
<artifactId>spring-grpc</artifactId>
9-
<version>0.5.0-SNAPSHOT</version>
9+
<version>0.5.0</version>
1010
</parent>
1111

1212
<groupId>org.springframework.grpc</groupId>
1313
<artifactId>parent-samples</artifactId>
14-
<version>0.5.0-SNAPSHOT</version>
14+
<version>0.5.0</version>
1515
<packaging>pom</packaging>
1616
<name>Parent Demo</name>
1717

Diff for: spring-grpc-build-dependencies/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.springframework.grpc</groupId>
88
<artifactId>spring-grpc-build-dependencies</artifactId>
9-
<version>0.5.0-SNAPSHOT</version>
9+
<version>0.5.0</version>
1010
<packaging>pom</packaging>
1111

1212
<name>Spring gRPC build dependencies</name>

0 commit comments

Comments
 (0)