Skip to content

Commit

Permalink
chore: Prepare bugfix release (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
timonback authored Jun 27, 2023
1 parent 7b631c3 commit 15cb911
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions springwolf-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ plugins {

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

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

dependencies {
api "com.asyncapi:asyncapi-core:${asyncapiCoreVersion}"
Expand Down
2 changes: 1 addition & 1 deletion springwolf-examples/springwolf-amqp-example/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.8.0' + (isSnapshot ? '-SNAPSHOT' : '')
version '0.8.1' + (isSnapshot ? '-SNAPSHOT' : '')

dependencies {
implementation project(":springwolf-core")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
app:
image: stavshamir/springwolf-amqp-example:0.8.0
image: stavshamir/springwolf-amqp-example:0.8.1
links:
- amqp
ports:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencyManagement {
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))

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

dependencies {
implementation project(":springwolf-core")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
app:
image: stavshamir/springwolf-cloud-stream-example:0.3.0
image: stavshamir/springwolf-cloud-stream-example:0.3.1
links:
- kafka
environment:
Expand Down
2 changes: 1 addition & 1 deletion springwolf-examples/springwolf-kafka-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))

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

dependencies {
implementation project(":springwolf-core")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
app:
image: stavshamir/springwolf-kafka-example:0.12.0
image: stavshamir/springwolf-kafka-example:0.12.1
links:
- kafka
environment:
Expand Down
2 changes: 1 addition & 1 deletion springwolf-plugins/springwolf-amqp-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Add the following dependencies and configuration class to enable this plugin.
```groovy
dependencies {
// Provides the documentation API
implementation 'io.github.springwolf:springwolf-amqp:0.8.0'
implementation 'io.github.springwolf:springwolf-amqp:0.8.1'
// Provides the UI - optional (recommended)
runtimeOnly 'io.github.springwolf:springwolf-ui:0.8.0'
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 @@ -11,7 +11,7 @@ plugins {
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))

group 'io.github.springwolf'
version '0.8.0' + (isSnapshot ? '-SNAPSHOT' : '')
version '0.8.1' + (isSnapshot ? '-SNAPSHOT' : '')

dependencies {
api project(":springwolf-core")
Expand Down
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.3.0' + (isSnapshot ? '-SNAPSHOT' : '')
version '0.3.1' + (isSnapshot ? '-SNAPSHOT' : '')

ext {
set('springCloudVersion', "2022.0.1")
Expand Down
2 changes: 1 addition & 1 deletion springwolf-plugins/springwolf-kafka-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add the following dependencies and configuration class to enable this plugin.
```groovy
dependencies {
// Provides the documentation API
implementation 'io.github.springwolf:springwolf-kafka:0.12.0'
implementation 'io.github.springwolf:springwolf-kafka:0.12.1'
// Provides the UI - optional (recommended)
runtimeOnly 'io.github.springwolf:springwolf-ui:0.8.0'
Expand Down
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 @@ -11,7 +11,7 @@ plugins {
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))

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

dependencies {
api project(":springwolf-core")
Expand Down
4 changes: 2 additions & 2 deletions springwolf-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ plugins {

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

group = 'io.github.springwolf'
version = '0.8.0' + (isSnapshot ? '-SNAPSHOT' : '')
group 'io.github.springwolf'
version '0.8.0' + (isSnapshot ? '-SNAPSHOT' : '')
sourceCompatibility = JavaVersion.VERSION_17

node {
Expand Down

0 comments on commit 15cb911

Please sign in to comment.