Skip to content

Commit b288d55

Browse files
committed
Prepare for v1.0.1
1 parent e5fad38 commit b288d55

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,17 @@ and this project adheres to [Break Versioning](https://www.taoensso.com/break-ve
1919

2020
### Security
2121

22+
## [1.0.1] - 2025-10-24
23+
24+
### Changed
25+
26+
- Define `#transaction` method in extension modules themselves (which are included into the operation class), rather than directly on the operation class itself. This adheres to typical Ruby inheritance-based method lookup, and allows for overloads of `#transaction` to be defined directly in the operation class or mixed in via other modules. (@timriley in #33)
27+
2228
## [1.0.0] - 2024-11-02
2329

2430
### Added
2531

26-
- Initial release (@waiting-for-dev)
32+
- Initial release. (@waiting-for-dev)
33+
34+
[1.0.1]: https://github.com/dry-rb/dry-operation/compare/v1.0.0...v1.0.1
35+
[1.0.0]: https://github.com/dry-rb/dry-operation/releases/tag/v1.0.0

lib/dry/operation/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Dry
44
class Operation
5-
VERSION = "1.0.0"
5+
VERSION = "1.0.1"
66
end
77
end

0 commit comments

Comments
 (0)