Skip to content

Commit

Permalink
release: bugfix release 0.9.4
Browse files Browse the repository at this point in the history
Addresses GH-625

Cherry-picked from master:
- f5c69ef

Co-authored-by: sam0r040 <[email protected]>
  • Loading branch information
timonback and sam0r040 committed Mar 8, 2024
1 parent d834aaf commit edddb2e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))

group 'io.github.springwolf'
version '0.1.2' + (isSnapshot ? '-SNAPSHOT' : '')
version '0.1.3' + (isSnapshot ? '-SNAPSHOT' : '')
sourceCompatibility = 1.8

repositories {
Expand Down
2 changes: 1 addition & 1 deletion springwolf-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))

group = 'io.github.springwolf'
version = '0.9.3' + (isSnapshot ? '-SNAPSHOT' : '')
version = '0.9.4' + (isSnapshot ? '-SNAPSHOT' : '')
sourceCompatibility = 1.8

repositories {
Expand Down
2 changes: 1 addition & 1 deletion springwolf-plugins/springwolf-amqp-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))

group 'io.github.springwolf'
version '0.6.0' + (isSnapshot ? '-SNAPSHOT' : '')
version '0.6.1' + (isSnapshot ? '-SNAPSHOT' : '')
sourceCompatibility = 1.8

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))

group 'io.github.springwolf'
version '0.1.0' + (isSnapshot ? '-SNAPSHOT' : '')
version '0.1.1' + (isSnapshot ? '-SNAPSHOT' : '')
sourceCompatibility = 1.8

repositories {
Expand Down Expand Up @@ -121,4 +121,3 @@ signing {
useInMemoryPgpKeys(signingKey, signingPassword)
sign publishing.publications.mavenJava
}

2 changes: 1 addition & 1 deletion springwolf-plugins/springwolf-kafka-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))

group 'io.github.springwolf'
version '0.10.3' + (isSnapshot ? '-SNAPSHOT' : '')
version '0.10.4' + (isSnapshot ? '-SNAPSHOT' : '')
sourceCompatibility = 1.8

repositories {
Expand Down

0 comments on commit edddb2e

Please sign in to comment.