Skip to content

Commit

Permalink
Release v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jaynetics committed Apr 23, 2023
1 parent b0169bd commit 817bc15
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## v1.2.1
### Fixed
- NoMethodError when using v1.2.0 without rails. D'oh.

## v1.2.0
### Added
- support for the inverse of polymorphic associations
Expand Down
2 changes: 1 addition & 1 deletion lib/delete_recursively/associated_class_finder.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module DeleteRecursively::AssociatedClassFinder
class << self
def call(reflection)
@cache[reflection] ||= find_classes(reflection)
cache[reflection] ||= find_classes(reflection)
end

def clear_cache
Expand Down
2 changes: 1 addition & 1 deletion lib/delete_recursively/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module DeleteRecursively
VERSION = '1.2.0'
VERSION = '1.2.1'
end

0 comments on commit 817bc15

Please sign in to comment.