Skip to content

Commit 125526f

Browse files
committed
Update core version to 0.5.0
1 parent 471ebdb commit 125526f

File tree

10 files changed

+9
-40
lines changed

10 files changed

+9
-40
lines changed

docker-compose.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

springwolf-core/build.gradle

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

1212
group = 'io.github.springwolf'
13-
version = '0.4.0' + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')
13+
version = '0.5.0' + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')
1414
sourceCompatibility = 1.8
1515

1616
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.3.0'
10+
version '0.3.1'
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.3.0
4+
image: stavshamir/springwolf-amqp-example:0.3.1
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.6.0'
10+
version '0.6.1'
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.6.0
4+
image: stavshamir/springwolf-kafka-example:0.6.1
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.3.0'
27+
implementation 'io.github.springwolf:springwolf-amqp:0.3.1'
2828
2929
// Provides the UI - optional (recommended)
3030
runtimeOnly 'io.github.springwolf:springwolf-ui:0.4.0'

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

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

1111
group 'io.github.springwolf'
12-
version '0.3.0'
12+
version '0.3.1'
1313
sourceCompatibility = 1.8
1414

1515
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.6.0'
29+
implementation 'io.github.springwolf:springwolf-kafka:0.6.1'
3030
3131
// Provides the UI - optional (recommended)
3232
runtimeOnly 'io.github.springwolf:springwolf-ui:0.4.0'

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

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

1111
group 'io.github.springwolf'
12-
version '0.6.0'
12+
version '0.6.1'
1313
sourceCompatibility = 1.8
1414

1515
repositories {

0 commit comments

Comments
 (0)