Skip to content

Commit ae1850c

Browse files
committed
Bump version to v0.9.13
1 parent 91c566b commit ae1850c

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [current]
9+
10+
## [0.9.13] - 2021-01-15
11+
### Added
12+
- TLS Check agent (to check TLS certificates for expiration).
13+
914
### Removed
1015
- Human task agent (mechanical turk).
1116

17+
### Fixed
18+
- Support official image on rootles docker (or podman).
19+
20+
1221
## [0.9.12] - 2020-11-23
1322
### Added
1423
- You can now try ActiveWorkflow without any external dependencies - default
@@ -184,7 +193,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
184193
### Added
185194
- Initial public release
186195

187-
[current]: https://github.com/automaticmode/active_workflow/compare/v0.9.12...HEAD
196+
[current]: https://github.com/automaticmode/active_workflow/compare/v0.9.13...HEAD
197+
[0.9.13]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.13
188198
[0.9.12]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.12
189199
[0.9.11]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.11
190200
[0.9.10]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.10

Dockerfile.heroku

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/automaticmode/active_workflow:0.9.12
1+
FROM docker.io/automaticmode/active_workflow:0.9.13
22

33
# Remove after the release
44
COPY docker/scripts/entrypoint-heroku /app/docker/scripts/

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.12
1+
0.9.13

config/initializers/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module ActiveWorkflow
22
class Application
3-
VERSION = '0.9.12'
3+
VERSION = '0.9.13'
44
end
55
end

docker-compose.yml

+3-3
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.12
18+
image: docker.io/automaticmode/active_workflow:0.9.13
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.12
34+
image: docker.io/automaticmode/active_workflow:0.9.13
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.12
48+
image: docker.io/automaticmode/active_workflow:0.9.13
4949
env_file:
5050
- .env
5151
environment:

0 commit comments

Comments
 (0)