From 94d0bf377ba7b7171e10eae19152320e98ee560e Mon Sep 17 00:00:00 2001 From: Adam Grare Date: Mon, 20 May 2024 17:29:31 -0400 Subject: [PATCH] Release v0.11.1 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) --- CHANGELOG.md | 9 ++++++++- lib/floe/version.rb | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad4fe053..c391695b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) @@ -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 diff --git a/lib/floe/version.rb b/lib/floe/version.rb index af378dba..09b7f5a3 100644 --- a/lib/floe/version.rb +++ b/lib/floe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Floe - VERSION = "0.11.0" + VERSION = "0.11.1" end