Skip to content

Commit 8919589

Browse files
committed
Bump version to v0.9.16
1 parent df03719 commit 8919589

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

Diff for: CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,20 @@ 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.16]
911
### Removed
1012
- Heroku-specific support (single button install, custom docker image, etc)
1113

14+
### Added
15+
- When developing workflows you may want to get back to 'clean slate' - delete
16+
all messages, log entries and wipe agent memory. You can now do that with
17+
workflow 'Reset' button.
18+
19+
### Changed
20+
- Updated default container image to use newer ruby and debian.
21+
- Updated default docker-compose to use newer postgres version.
22+
1223
### Fixed
1324
- Post agent will now interpret server responses as UTF-8 with an option
1425
to override.
@@ -252,7 +263,8 @@ Removed third party agents:
252263
### Added
253264
- Initial public release
254265

255-
[current]: https://github.com/automaticmode/active_workflow/compare/v0.9.15.1...HEAD
266+
[current]: https://github.com/automaticmode/active_workflow/compare/v0.9.16...HEAD
267+
[0.9.16]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.16
256268
[0.9.15.1]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.15.1
257269
[0.9.15]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.15
258270
[0.9.14.4]: https://github.com/automaticmode/active_workflow/releases/tag/v0.9.14.4

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.15.1
1+
0.9.16

Diff for: 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.15.1'
3+
VERSION = '0.9.16'
44
end
55
end

Diff for: 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.15.1
18+
image: docker.io/automaticmode/active_workflow:0.9.16
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.15.1
34+
image: docker.io/automaticmode/active_workflow:0.9.16
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.15.1
48+
image: docker.io/automaticmode/active_workflow:0.9.16
4949
env_file:
5050
- .env
5151
environment:

0 commit comments

Comments
 (0)