-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
15 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
## v0.1.2 | ||
## v0.1.3 | ||
|
||
#### Fix | ||
- features | ||
- Added `find` method to find directly via idy returning `nil` when record is not found; | ||
- Added `find!` method to find directly via idy raising error when record is not found. | ||
|
||
- set options on a prefixed var to avoid conflict. | ||
- bug fixes | ||
- String that is integer like is not passed to original find method. | ||
|
||
## v0.1.1 | ||
## v0.1.2 | ||
|
||
#### Fix | ||
- bug fixes | ||
- Set options on a prefixed var to avoid conflict. | ||
|
||
- v0.1.0 had problem on `push`. | ||
## v0.1.1 | ||
|
||
## v0.1.0 | ||
- bug fixes | ||
- v0.1.0 had problem on `push`. | ||
|
||
#### Feature | ||
## v0.1.0 | ||
|
||
- First release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
idy (0.1.2) | ||
idy (0.1.3) | ||
hashids (~> 1.0) | ||
rails (>= 5, < 6) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Idy | ||
VERSION = '0.1.2'.freeze | ||
VERSION = '0.1.3'.freeze | ||
end |