Skip to content

Commit a3dd529

Browse files
author
Vidas P
committed
Bump version to v0.9.10
1 parent 74fd4fa commit a3dd529

File tree

5 files changed

+19
-8
lines changed

5 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88

99
## [current]
10-
### Fixed
1110

11+
12+
## [0.9.10]
13+
### Fixed
1214
- Don't use `foreman` to manage multiple processes when running with
1315
`SINGLE_DYNO=1`. Single-dyno mode was demoted to being used purely for trying
1416
out ActiveWorkflow on Heroku (including Free plan). Functionality
1517
previously provided by foreman reimplemented as a simple shell script using
1618
job control functionality of bash. Fixes #9.
1719

20+
### Changed
21+
- Both docker-compose and deployment to heroku (via single button deployment)
22+
switched to using official docker images of ActiveWorkflow by default instead
23+
of building images from source - mostly to save time spent building docker
24+
image every single time. Of course, you can still build your own images from
25+
source. The *latest versioned* image (eg.
26+
automaticmode/active_workflow:0.9.10) is used.
27+
1828

1929
## [0.9.9.2] - 2020-09-09
2030
### Fixed
@@ -158,7 +168,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
158168
### Added
159169
- Initial public release
160170

161-
[current]: https://github.com/automaticmode/active_workflow/compare/v0.9.9.2...HEAD
171+
[current]: https://github.com/automaticmode/active_workflow/compare/v0.9.10...HEAD
172+
[0.9.10]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.10
162173
[0.9.9.2]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.9.2
163174
[0.9.9.1]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.9.1
164175
[0.9.9]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.9

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.9.2
1+
FROM docker.io/automaticmode/active_workflow:0.9.10

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.9.2
1+
0.9.10

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.9.2'
3+
VERSION = '0.9.10'
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.9.2
18+
image: docker.io/automaticmode/active_workflow:0.9.10
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.9.2
34+
image: docker.io/automaticmode/active_workflow:0.9.10
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.9.2
48+
image: docker.io/automaticmode/active_workflow:0.9.10
4949
env_file:
5050
- .env
5151
environment:

0 commit comments

Comments
 (0)