Skip to content

Commit

Permalink
v 0.1.4 db operation as enumerable
Browse files Browse the repository at this point in the history
  • Loading branch information
apneadiving committed Aug 2, 2024
1 parent 7dcde58 commit e65b46e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
changeset (0.1.3)
changeset (0.1.4)
zeitwerk

GEM
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.1.4
- Make DbOperationCollection an enumerable

# 0.1.3
- Add `merge_child_async` for legacy code concerns

Expand Down
2 changes: 2 additions & 0 deletions lib/changeset/db_operation_collection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

class Changeset
class DbOperationCollection
include Enumerable

def initialize
@collection = []
end
Expand Down
2 changes: 1 addition & 1 deletion lib/changeset/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# typed: strict

class Changeset
VERSION = "0.1.3"
VERSION = "0.1.4"
end

0 comments on commit e65b46e

Please sign in to comment.