Skip to content

Commit 15cb911

Browse files
authored
chore: Prepare bugfix release (#244)
1 parent 7b631c3 commit 15cb911

File tree

13 files changed

+15
-15
lines changed

13 files changed

+15
-15
lines changed

springwolf-core/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ plugins {
1111

1212
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))
1313

14-
group = 'io.github.springwolf'
15-
version = '0.11.0' + (isSnapshot ? '-SNAPSHOT' : '')
14+
group 'io.github.springwolf'
15+
version '0.11.1' + (isSnapshot ? '-SNAPSHOT' : '')
1616

1717
dependencies {
1818
api "com.asyncapi:asyncapi-core:${asyncapiCoreVersion}"

springwolf-examples/springwolf-amqp-example/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.8.1' + (isSnapshot ? '-SNAPSHOT' : '')
1515

1616
dependencies {
1717
implementation project(":springwolf-core")

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.8.0
4+
image: stavshamir/springwolf-amqp-example:0.8.1
55
links:
66
- amqp
77
ports:

springwolf-examples/springwolf-cloud-stream-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencyManagement {
2121
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))
2222

2323
group 'io.github.springwolf'
24-
version '0.3.0' + (isSnapshot ? '-SNAPSHOT' : '')
24+
version '0.3.1' + (isSnapshot ? '-SNAPSHOT' : '')
2525

2626
dependencies {
2727
implementation project(":springwolf-core")

springwolf-examples/springwolf-cloud-stream-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-cloud-stream-example:0.3.0
4+
image: stavshamir/springwolf-cloud-stream-example:0.3.1
55
links:
66
- kafka
77
environment:

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

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

1414
group 'io.github.springwolf'
15-
version '0.12.0' + (isSnapshot ? '-SNAPSHOT' : '')
15+
version '0.12.1' + (isSnapshot ? '-SNAPSHOT' : '')
1616

1717
dependencies {
1818
implementation project(":springwolf-core")

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.12.0
4+
image: stavshamir/springwolf-kafka-example:0.12.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.8.0'
27+
implementation 'io.github.springwolf:springwolf-amqp:0.8.1'
2828
2929
// Provides the UI - optional (recommended)
3030
runtimeOnly 'io.github.springwolf:springwolf-ui:0.8.0'

springwolf-plugins/springwolf-amqp-plugin/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.8.1' + (isSnapshot ? '-SNAPSHOT' : '')
1515

1616
dependencies {
1717
api project(":springwolf-core")

springwolf-plugins/springwolf-cloud-stream-plugin/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.3.0' + (isSnapshot ? '-SNAPSHOT' : '')
14+
version '0.3.1' + (isSnapshot ? '-SNAPSHOT' : '')
1515

1616
ext {
1717
set('springCloudVersion', "2022.0.1")

0 commit comments

Comments
 (0)