Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release preparation - bump versions #209

Merged
merged 6 commits into from
Jun 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 19 additions & 16 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,52 +3,55 @@
The following lists describe the steps necessary to release a new version.

## springwolf-core

1. Update version number in `springwolf-core/build.gradle`
2. Run all tests (including all examples + integration)
3. Run github `Publish releases` pipeline
4. Release version in nexus
5. Update version number on website

## springwolf-ui

1. Update version number in `build.gradle`
2. Update version number in `README.md`
3. Run `npm run update-mocks`
4. Run `npm run start` to test the ui with the updated mocks
5. Run github `Publish releases` pipeline
6. Release version in nexus
7. Update version number on website
3. Run github `Publish releases` pipeline
4. Release version in nexus
5. Update version number on website

## Plugins

### springwolf-amqp

1. Update version number in
1. `springwolf-plugins/springwolf-amqp-plugin/build.gradle`
2. `springwolf-plugins/springwolf-amqp-plugin/README.md`
3. `springwolf-examples/springwolf-amqp-example/build.gradle`
4. `springwolf-examples/springwolf-amqp-example/docker-compose.yml`
1. `springwolf-plugins/springwolf-amqp-plugin/build.gradle`
2. `springwolf-plugins/springwolf-amqp-plugin/README.md`
3. `springwolf-examples/springwolf-amqp-example/build.gradle`
4. `springwolf-examples/springwolf-amqp-example/docker-compose.yml`
2. Run all tests (including all examples + integration)
3. Run docker compose and manually test ui
4. Run github `Publish releases` pipeline
5. Release version in nexus
6. Update version number on website

### springwolf-cloud-stream

1. Update version number in
1. `springwolf-plugins/springwolf-cloud-stream-plugin/build.gradle`
2. `springwolf-examples/springwolf-cloud-stream-example/build.gradle`
3. `springwolf-examples/springwolf-cloud-stream-example/docker-compose.yml`
1. `springwolf-plugins/springwolf-cloud-stream-plugin/build.gradle`
2. `springwolf-examples/springwolf-cloud-stream-example/build.gradle`
3. `springwolf-examples/springwolf-cloud-stream-example/docker-compose.yml`
2. Run all tests (including all examples + integration)
3. Run docker compose and manually test ui
4. Run github `Publish releases` pipeline
5. Release version in nexus
6. Update version number on website

### springwolf-kafka

1. Update version number in
1. `springwolf-plugins/springwolf-kafka-plugin/build.gradle`
2. `springwolf-plugins/springwolf-kafka-plugin/README.md`
3. `springwolf-examples/springwolf-kafka-example/build.gradle`
4. `springwolf-examples/springwolf-kafka-example/docker-compose.yml`
1. `springwolf-plugins/springwolf-kafka-plugin/build.gradle`
2. `springwolf-plugins/springwolf-kafka-plugin/README.md`
3. `springwolf-examples/springwolf-kafka-example/build.gradle`
4. `springwolf-examples/springwolf-kafka-example/docker-compose.yml`
2. Run all tests (including all examples + integration)
3. Run docker compose and manually test ui
4. Run github `Publish releases` pipeline
Expand Down
2 changes: 1 addition & 1 deletion springwolf-core/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.10.0' + (isSnapshot ? '-SNAPSHOT' : '')
version = '0.11.0' + (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.7.0' + (isSnapshot ? '-SNAPSHOT' : '')
version '0.8.0' + (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.7.0
image: stavshamir/springwolf-amqp-example:0.8.0
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.2.0' + (isSnapshot ? '-SNAPSHOT' : '')
version '0.3.0' + (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.2.0
image: stavshamir/springwolf-cloud-stream-example:0.3.0
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.11.0' + (isSnapshot ? '-SNAPSHOT' : '')
version '0.12.0' + (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.11.0
image: stavshamir/springwolf-kafka-example:0.12.0
links:
- kafka
environment:
Expand Down
4 changes: 2 additions & 2 deletions springwolf-plugins/springwolf-amqp-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ Add the following dependencies and configuration class to enable this plugin.
```groovy
dependencies {
// Provides the documentation API
implementation 'io.github.springwolf:springwolf-amqp:0.7.0'
implementation 'io.github.springwolf:springwolf-amqp:0.8.0'

// Provides the UI - optional (recommended)
runtimeOnly 'io.github.springwolf:springwolf-ui:0.7.0'
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.7.0' + (isSnapshot ? '-SNAPSHOT' : '')
version '0.8.0' + (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.2.0' + (isSnapshot ? '-SNAPSHOT' : '')
version '0.3.0' + (isSnapshot ? '-SNAPSHOT' : '')

ext {
set('springCloudVersion', "2022.0.1")
Expand Down
4 changes: 2 additions & 2 deletions springwolf-plugins/springwolf-kafka-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ Add the following dependencies and configuration class to enable this plugin.
```groovy
dependencies {
// Provides the documentation API
implementation 'io.github.springwolf:springwolf-kafka:0.11.0'
implementation 'io.github.springwolf:springwolf-kafka:0.12.0'

// Provides the UI - optional (recommended)
runtimeOnly 'io.github.springwolf:springwolf-ui:0.7.0'
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.11.0' + (isSnapshot ? '-SNAPSHOT' : '')
version '0.12.0' + (isSnapshot ? '-SNAPSHOT' : '')

dependencies {
api project(":springwolf-core")
Expand Down
2 changes: 1 addition & 1 deletion springwolf-ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Add the following dependencies:

```groovy
dependencies {
runtimeOnly 'io.github.springwolf:springwolf-ui:0.7.0'
runtimeOnly 'io.github.springwolf:springwolf-ui:0.8.0'
}
```

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

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

node {
Expand Down