Skip to content

Commit

Permalink
Update version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
stavshamir committed Jan 15, 2023
1 parent 3096ebe commit a338399
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
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.8.0' + (isSnapshot ? '-SNAPSHOT' : '')
version = '0.9.0' + (isSnapshot ? '-SNAPSHOT' : '')
sourceCompatibility = 1.8

repositories {
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 @@ -7,7 +7,7 @@ plugins {
}

sourceCompatibility = '1.8'
version '0.5.0'
version '0.6.0'

repositories {
// For local development with snapshots
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.5.0
image: stavshamir/springwolf-amqp-example:0.6.0
links:
- amqp
ports:
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 @@ -7,7 +7,7 @@ plugins {
}

sourceCompatibility = '1.8'
version '0.9.0'
version '0.10.0'


repositories {
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.9.0
image: stavshamir/springwolf-kafka-example:0.10.0
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.5.0'
implementation 'io.github.springwolf:springwolf-amqp:0.6.0'
// Provides the UI - optional (recommended)
runtimeOnly 'io.github.springwolf:springwolf-ui:0.6.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 @@ -10,7 +10,7 @@ plugins {
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))

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

repositories {
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.9.0'
implementation 'io.github.springwolf:springwolf-kafka:0.10.0'
// Provides the UI - optional (recommended)
runtimeOnly 'io.github.springwolf:springwolf-ui:0.6.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 @@ -10,7 +10,7 @@ plugins {
def isSnapshot = Boolean.valueOf(project.findProperty('SNAPSHOT'))

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

repositories {
Expand Down

0 comments on commit a338399

Please sign in to comment.