Skip to content

Commit

Permalink
Release v0.11.1
Browse files Browse the repository at this point in the history
Fixed
- Fix issue where a failed state can leave a workflow in "running" (#182)

Changed
- Drop unused Task#status (#180)
- Check task failed? in non_terminal_mixin (#183)
  • Loading branch information
agrare committed May 20, 2024
1 parent 10e59de commit 94d0bf3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.11.1] - 2024-05-20
### Fixed
- Fix issue where a failed state can leave a workflow in "running" ([#182](https://github.com/ManageIQ/floe/pull/182))

### Changed
- Drop unused Task#status ([#180](https://github.com/ManageIQ/floe/pull/180))
- Check task failed? in non_terminal_mixin ([#183](https://github.com/ManageIQ/floe/pull/183))

## [0.11.0] - 2024-05-02
### Fixed
- Ensure the local code is loaded in exe/floe ([#173](https://github.com/ManageIQ/floe/pull/173))
Expand Down Expand Up @@ -167,7 +173,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Initial release

[Unreleased]: https://github.com/ManageIQ/floe/compare/v0.11.0...HEAD
[Unreleased]: https://github.com/ManageIQ/floe/compare/v0.11.1...HEAD
[0.11.1]: https://github.com/ManageIQ/floe/compare/v0.11.0...v0.11.1
[0.11.0]: https://github.com/ManageIQ/floe/compare/v0.10.0...v0.11.0
[0.10.0]: https://github.com/ManageIQ/floe/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/ManageIQ/floe/compare/v0.8.0...v0.9.0
Expand Down
2 changes: 1 addition & 1 deletion lib/floe/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Floe
VERSION = "0.11.0"
VERSION = "0.11.1"
end

0 comments on commit 94d0bf3

Please sign in to comment.