From bd0d1cfc9005abed902caa9305b0af21a1d70d1e Mon Sep 17 00:00:00 2001 From: Adam Grare Date: Thu, 21 Nov 2024 14:44:27 -0500 Subject: [PATCH] Release v0.15.1 Fixed - Fix Map/Parallel States checking container_runner#status! of finished states (#296) - Fix child workflow mixin tight loop (#297) --- CHANGELOG.md | 9 ++++++++- lib/floe/version.rb | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 806e6c49..26770502 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.15.1] - 2024-11-21 +### Fixed +- Fix Map/Parallel States checking container_runner#status! of finished states ([#296](https://github.com/ManageIQ/floe/pull/296)) +- Fix child workflow mixin tight loop ([#297](https://github.com/ManageIQ/floe/pull/297)) + ## [0.15.0] - 2024-10-28 ### Added - Add WorkflowBase base class for Workflow ([#279](https://github.com/ManageIQ/floe/pull/279)) @@ -267,7 +272,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added - Initial release -[Unreleased]: https://github.com/ManageIQ/floe/compare/v0.14.0...HEAD +[Unreleased]: https://github.com/ManageIQ/floe/compare/v0.15.1...HEAD +[0.15.1]: https://github.com/ManageIQ/floe/compare/v0.15.0...v0.15.1 +[0.15.0]: https://github.com/ManageIQ/floe/compare/v0.14.0...v0.15.0 [0.14.0]: https://github.com/ManageIQ/floe/compare/v0.13.1...v0.14.0 [0.13.1]: https://github.com/ManageIQ/floe/compare/v0.13.0...v0.13.1 [0.13.0]: https://github.com/ManageIQ/floe/compare/v0.12.0...v0.13.0 diff --git a/lib/floe/version.rb b/lib/floe/version.rb index b7aadb70..84a2b47a 100644 --- a/lib/floe/version.rb +++ b/lib/floe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Floe - VERSION = "0.15.0" + VERSION = "0.15.1" end