Skip to content

Commit

Permalink
Version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benpickles committed May 12, 2024
1 parent 29149eb commit 0de5aed
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## Version 0.7.0 - 2024-05-12

- Data within an operation is now gathered on a separate `#data` object that's passed to a concrete `Operatic::Success`/`Operatic::Failure` result instance on completion. Convenience data accessors can be defined on the `Data` object (via the renamed `Operatic.data_attr`) but remain available on the result using the magic of `Result#method_missing`. <https://github.com/benpickles/operatic/pull/18>
- Require Ruby version 2.7+.
- Support pattern matching solely against a Result's data. <https://github.com/benpickles/operatic/pull/20>

## Version 0.6.0 - 2022-08-22

- Support pattern matching a Result (in Ruby 2.7+). <https://github.com/benpickles/operatic/pull/12>
Expand Down
2 changes: 1 addition & 1 deletion lib/operatic/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Operatic
VERSION = '0.6.0'
VERSION = '0.7.0'
end

0 comments on commit 0de5aed

Please sign in to comment.