Skip to content

Commit 6802078

Browse files
author
Vidas P
committed
Bump version to v0.9.14.2
1 parent abe89df commit 6802078

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

CHANGELOG.md

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

88
## [current]
99

10+
## [0.9.14.2] - 2021-04-18
11+
### Fixed
12+
- Mimemagic licensing issue.
13+
14+
### Changed
15+
- Increased default scheduler frequency (may help with reliability issues).
16+
- Better navigation from agent to its workflow(s).
17+
- Various UI improvements.
18+
19+
1020
## [0.9.14.1] - 2021-03-21
1121
### Fixed
1222
- Extract the first paragraph (or heading) from an agent description to be used
@@ -218,7 +228,8 @@ Removed third party agents:
218228
### Added
219229
- Initial public release
220230

221-
[current]: https://github.com/automaticmode/active_workflow/compare/v0.9.14.1...HEAD
231+
[current]: https://github.com/automaticmode/active_workflow/compare/v0.9.14.2...HEAD
232+
[0.9.14.1]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.14.2
222233
[0.9.14.1]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.14.1
223234
[0.9.14]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.14
224235
[0.9.13]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.13

Dockerfile.heroku

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/automaticmode/active_workflow:0.9.14.1
1+
FROM docker.io/automaticmode/active_workflow:0.9.14.2
22

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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.14.1
1+
0.9.14.2

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

0 commit comments

Comments
 (0)