diff --git a/CHANGELOG.md b/CHANGELOG.md index fde919f..dcd9884 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v1.0.0 + +- News + - Drops overrided `find` method to avoid find on a hash that looks like a number issue [#1](https://github.com/wbotelhos/idy/issues/1) + ## v0.1.3 - features diff --git a/Gemfile.lock b/Gemfile.lock index b65d199..60745b8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - idy (0.1.3) + idy (1.0.0) hashids (~> 1.0) rails (>= 5, < 6) diff --git a/lib/idy/version.rb b/lib/idy/version.rb index 2ab3609..a98d0af 100644 --- a/lib/idy/version.rb +++ b/lib/idy/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Idy - VERSION = '0.1.3' + VERSION = '1.0.0' end