From 09010f5ee2fb18b0ce5c5cc3c75f60db8a606863 Mon Sep 17 00:00:00 2001 From: Washington Botelho Date: Fri, 2 Mar 2018 15:18:38 -0300 Subject: [PATCH] v0.7.0 --- CHANGELOG.md | 11 +++++++++++ Gemfile.lock | 4 ++-- lib/rating/version.rb | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fab0ac..ea75799 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/Gemfile.lock b/Gemfile.lock index c9db53f..58cbf2f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -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) diff --git a/lib/rating/version.rb b/lib/rating/version.rb index 153942a..572ffb8 100644 --- a/lib/rating/version.rb +++ b/lib/rating/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Rating - VERSION = '0.6.0' + VERSION = '0.7.0' end