Skip to content

Commit bd9d6a2

Browse files
author
Vidas P
committed
Bump version to v0.9.12
1 parent 9413953 commit bd9d6a2

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [current]
99

10+
## [0.9.12] - 2020-11-23
11+
### Added
12+
- You can now try ActiveWorkflow without any external dependencies - default
13+
(docker) image can be run in as a single container with database included.
1014

1115
## [0.9.11] - 2020-10-28
1216
### Changed
@@ -178,7 +182,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
178182
### Added
179183
- Initial public release
180184

181-
[current]: https://github.com/automaticmode/active_workflow/compare/v0.9.11...HEAD
185+
[current]: https://github.com/automaticmode/active_workflow/compare/v0.9.12...HEAD
186+
[0.9.12]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.12
182187
[0.9.11]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.11
183188
[0.9.10]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.10
184189
[0.9.9.2]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.9.2

Dockerfile.heroku

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM docker.io/automaticmode/active_workflow:0.9.11
1+
FROM docker.io/automaticmode/active_workflow:0.9.12

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.11
1+
0.9.12

config/initializers/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module ActiveWorkflow
22
class Application
3-
VERSION = '0.9.11'
3+
VERSION = '0.9.12'
44
end
55
end

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
- 5432:5432
1616

1717
active_workflow_web:
18-
image: docker.io/automaticmode/active_workflow:0.9.11
18+
image: docker.io/automaticmode/active_workflow:0.9.12
1919
env_file:
2020
- .env
2121
environment:
@@ -31,7 +31,7 @@ services:
3131
command: /scripts/init
3232

3333
active_workflow_scheduler:
34-
image: docker.io/automaticmode/active_workflow:0.9.11
34+
image: docker.io/automaticmode/active_workflow:0.9.12
3535
env_file:
3636
- .env
3737
environment:
@@ -45,7 +45,7 @@ services:
4545
command: bundle exec rails runner bin/scheduler.rb
4646

4747
active_workflow_worker:
48-
image: docker.io/automaticmode/active_workflow:0.9.11
48+
image: docker.io/automaticmode/active_workflow:0.9.12
4949
env_file:
5050
- .env
5151
environment:

0 commit comments

Comments
 (0)