v0.7.0
parent
4c62090d0e
commit
09010f5ee2
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,3 +1,14 @@
|
|||
## v0.7.0
|
||||
|
||||
### News
|
||||
|
||||
- Support to configure `uniqueness` validation via YAML into Rating::Rate model;
|
||||
- Support to multiple scopes via `extra_scopes` option.
|
||||
|
||||
### Updates
|
||||
|
||||
- Reverts v0.6.0, since we need this validation because we cannot edit the Rate model by ourself.
|
||||
|
||||
## v0.6.0
|
||||
|
||||
### Updates
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
rating (0.6.0)
|
||||
rating (0.7.0)
|
||||
activerecord (>= 4.2, < 6)
|
||||
|
||||
GEM
|
||||
|
@ -68,7 +68,7 @@ GEM
|
|||
byebug (~> 10.0)
|
||||
pry (~> 0.10)
|
||||
rack (2.0.4)
|
||||
rack-test (0.8.2)
|
||||
rack-test (0.8.3)
|
||||
rack (>= 1.0, < 3)
|
||||
rails-dom-testing (2.0.3)
|
||||
activesupport (>= 4.2.0)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module Rating
|
||||
VERSION = '0.6.0'
|
||||
VERSION = '0.7.0'
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue