Skip to content

Commit

Permalink
chore: Unify docker-compose versions
Browse files Browse the repository at this point in the history
Centralize the version value used in the `docker-compose`
  • Loading branch information
Carlos Tasada committed Jul 11, 2023
1 parent 26bdd42 commit f75e22e
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SPRINGWOLF_VERSION=0.13.0
7 changes: 3 additions & 4 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The following lists describe the steps necessary to release a new version.

## springwolf-core
## SpringWolf

1. Update version number in `build.gradle`
2. Run all tests (including all examples + integration)
Expand All @@ -20,11 +20,12 @@ The following lists describe the steps necessary to release a new version.

## Plugins

1. Update version number in `.env`

### springwolf-amqp

1. Update version number in
1. `springwolf-plugins/springwolf-amqp-plugin/README.md`
2. `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
Expand All @@ -35,7 +36,6 @@ The following lists describe the steps necessary to release a new version.

1. Update version number in
1. `springwolf-plugins/springwolf-cloud-stream-plugin/README.md`
2. `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
Expand All @@ -46,7 +46,6 @@ The following lists describe the steps necessary to release a new version.

1. Update version number in
1. `springwolf-plugins/springwolf-kafka-plugin/README.md`
2. `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
1 change: 1 addition & 0 deletions springwolf-examples/springwolf-amqp-example/.env
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
app:
image: stavshamir/springwolf-amqp-example:0.13.0
image: stavshamir/springwolf-amqp-example:${SPRINGWOLF_VERSION}
links:
- amqp
ports:
Expand Down
1 change: 1 addition & 0 deletions springwolf-examples/springwolf-cloud-stream-example/.env
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.13.0
image: stavshamir/springwolf-cloud-stream-example:${SPRINGWOLF_VERSION}
links:
- kafka
environment:
Expand Down
1 change: 1 addition & 0 deletions springwolf-examples/springwolf-kafka-example/.env
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
app:
image: stavshamir/springwolf-kafka-example:0.13.0
image: stavshamir/springwolf-kafka-example:${SPRINGWOLF_VERSION}
links:
- kafka
environment:
Expand Down

0 comments on commit f75e22e

Please sign in to comment.