Skip to content

Commit a338399

Browse files
committed
Update version numbers
1 parent 3096ebe commit a338399

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

springwolf-core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))
1212

1313
group = 'io.github.springwolf'
14-
version = '0.8.0' + (isSnapshot ? '-SNAPSHOT' : '')
14+
version = '0.9.0' + (isSnapshot ? '-SNAPSHOT' : '')
1515
sourceCompatibility = 1.8
1616

1717
repositories {

springwolf-examples/springwolf-amqp-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
sourceCompatibility = '1.8'
10-
version '0.5.0'
10+
version '0.6.0'
1111

1212
repositories {
1313
// For local development with snapshots

springwolf-examples/springwolf-amqp-example/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3'
22
services:
33
app:
4-
image: stavshamir/springwolf-amqp-example:0.5.0
4+
image: stavshamir/springwolf-amqp-example:0.6.0
55
links:
66
- amqp
77
ports:

springwolf-examples/springwolf-kafka-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
sourceCompatibility = '1.8'
10-
version '0.9.0'
10+
version '0.10.0'
1111

1212

1313
repositories {

springwolf-examples/springwolf-kafka-example/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3'
22
services:
33
app:
4-
image: stavshamir/springwolf-kafka-example:0.9.0
4+
image: stavshamir/springwolf-kafka-example:0.10.0
55
links:
66
- kafka
77
environment:

springwolf-plugins/springwolf-amqp-plugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Add the following dependencies and configuration class to enable this plugin.
2424
```groovy
2525
dependencies {
2626
// Provides the documentation API
27-
implementation 'io.github.springwolf:springwolf-amqp:0.5.0'
27+
implementation 'io.github.springwolf:springwolf-amqp:0.6.0'
2828
2929
// Provides the UI - optional (recommended)
3030
runtimeOnly 'io.github.springwolf:springwolf-ui:0.6.0'

springwolf-plugins/springwolf-amqp-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))
1111

1212
group 'io.github.springwolf'
13-
version '0.5.0' + (isSnapshot ? '-SNAPSHOT' : '')
13+
version '0.6.0' + (isSnapshot ? '-SNAPSHOT' : '')
1414
sourceCompatibility = 1.8
1515

1616
repositories {

springwolf-plugins/springwolf-kafka-plugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Add the following dependencies and configuration class to enable this plugin.
2626
```groovy
2727
dependencies {
2828
// Provides the documentation API
29-
implementation 'io.github.springwolf:springwolf-kafka:0.9.0'
29+
implementation 'io.github.springwolf:springwolf-kafka:0.10.0'
3030
3131
// Provides the UI - optional (recommended)
3232
runtimeOnly 'io.github.springwolf:springwolf-ui:0.6.0'

springwolf-plugins/springwolf-kafka-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))
1111

1212
group 'io.github.springwolf'
13-
version '0.9.0' + (isSnapshot ? '-SNAPSHOT' : '')
13+
version '0.10.0' + (isSnapshot ? '-SNAPSHOT' : '')
1414
sourceCompatibility = 1.8
1515

1616
repositories {

0 commit comments

Comments
 (0)