Skip to content

Commit 406532e

Browse files
author
Dave Syer
committed
Bump to 0.3.0 for release
1 parent 40820b4 commit 406532e

File tree

18 files changed

+29
-29
lines changed

18 files changed

+29
-29
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t
187187
<dependency>
188188
<groupId>org.springframework.grpc</groupId>
189189
<artifactId>spring-grpc-dependencies</artifactId>
190-
<version>0.3.0-SNAPSHOT</version>
190+
<version>0.3.0</version>
191191
<type>pom</type>
192192
<scope>import</scope>
193193
</dependency>
@@ -201,7 +201,7 @@ As shown in the snippet below this can then be followed by version-less declarat
201201

202202
```gradle
203203
dependencies {
204-
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.3.0-SNAPSHOT")
204+
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.3.0")
205205
}
206206
```
207207

pom.xml

Lines changed: 1 addition & 1 deletion
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.3.0-SNAPSHOT</version>
8+
<version>0.3.0</version>
99

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

samples/grpc-server-netty-shaded/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

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

1212
java {
1313
toolchain {
@@ -24,7 +24,7 @@ repositories {
2424

2525
dependencyManagement {
2626
imports {
27-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.3.0-SNAPSHOT'
27+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.3.0'
2828
}
2929
}
3030

samples/grpc-server-netty-shaded/pom.xml

Lines changed: 2 additions & 2 deletions
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.3.0-SNAPSHOT</version>
14+
<version>0.3.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.3.0-SNAPSHOT</version>
28+
<version>0.3.0</version>
2929
<type>pom</type>
3030
<scope>import</scope>
3131
</dependency>

samples/grpc-server/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

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

1212
java {
1313
toolchain {
@@ -24,7 +24,7 @@ repositories {
2424

2525
dependencyManagement {
2626
imports {
27-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.3.0-SNAPSHOT'
27+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.3.0'
2828
}
2929
}
3030

samples/grpc-server/pom.xml

Lines changed: 2 additions & 2 deletions
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.3.0-SNAPSHOT</version>
14+
<version>0.3.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.3.0-SNAPSHOT</version>
41+
<version>0.3.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

samples/grpc-tomcat-secure/pom.xml

Lines changed: 2 additions & 2 deletions
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.3.0-SNAPSHOT</version>
14+
<version>0.3.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.3.0-SNAPSHOT</version>
41+
<version>0.3.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

samples/grpc-tomcat/pom.xml

Lines changed: 2 additions & 2 deletions
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.3.0-SNAPSHOT</version>
14+
<version>0.3.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.3.0-SNAPSHOT</version>
41+
<version>0.3.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

samples/grpc-webflux/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

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

1212
java {
1313
toolchain {
@@ -24,7 +24,7 @@ repositories {
2424

2525
dependencyManagement {
2626
imports {
27-
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.3.0-SNAPSHOT'
27+
mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.3.0'
2828
}
2929
}
3030

samples/grpc-webflux/pom.xml

Lines changed: 2 additions & 2 deletions
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.3.0-SNAPSHOT</version>
14+
<version>0.3.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.3.0-SNAPSHOT</version>
41+
<version>0.3.0</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

0 commit comments

Comments
 (0)