Skip to content

Commit 804eda3

Browse files
committed
Release v0.11.0
Fixed - Ensure the local code is loaded in exe/floe (#173) - Fix issues with exe/floe and various combinations of workflow and input (#174) Added - Add support for pluggable schemes (#169) Changed - Collapse some namespaces (#171) - Pass workflow context into runner#run_async! (#177)
1 parent a172221 commit 804eda3

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
66

7+
## [0.11.0] - 2024-05-02
8+
### Fixed
9+
- Ensure the local code is loaded in exe/floe ([#173](https://github.com/ManageIQ/floe/pull/173))
10+
- Fix issues with exe/floe and various combinations of workflow and input ([#174](https://github.com/ManageIQ/floe/pull/174))
11+
12+
### Added
13+
- Add support for pluggable schemes ([#169](https://github.com/ManageIQ/floe/pull/169))
14+
15+
### Changed
16+
- Collapse some namespaces ([#171](https://github.com/ManageIQ/floe/pull/171))
17+
- Pass workflow context into runner#run_async! ([#177](https://github.com/ManageIQ/floe/pull/177))
18+
19+
### Removed
20+
- Remove unused run! method ([#176](https://github.com/ManageIQ/floe/pull/176))
21+
22+
723
## [0.10.0] - 2024-04-05
824
### Fixed
925
- Fix rubocops ([#164](https://github.com/ManageIQ/floe/pull/164))
@@ -149,7 +165,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
149165
### Added
150166
- Initial release
151167

152-
[Unreleased]: https://github.com/ManageIQ/floe/compare/v0.10.0...HEAD
168+
[Unreleased]: https://github.com/ManageIQ/floe/compare/v0.11.0...HEAD
169+
[0.11.0]: https://github.com/ManageIQ/floe/compare/v0.10.0...v0.11.0
153170
[0.10.0]: https://github.com/ManageIQ/floe/compare/v0.9.0...v0.10.0
154171
[0.9.0]: https://github.com/ManageIQ/floe/compare/v0.8.0...v0.9.0
155172
[0.8.0]: https://github.com/ManageIQ/floe/compare/v0.7.0...v0.8.0

lib/floe/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Floe
4-
VERSION = "0.10.0"
4+
VERSION = "0.11.0"
55
end

0 commit comments

Comments
 (0)