diff --git a/CHANGELOG.md b/CHANGELOG.md index ae045c3..9bfa85c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v0.2.0 + +### News + +- Scope support to be possible rate item from a resource; +- Author model type where zero rating record is not generated on record creation. + ## v0.1.0 - First release. diff --git a/Gemfile.lock b/Gemfile.lock index 1aca6a5..88f42ac 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rating (0.1.0) + rating (0.2.0) rails (>= 4.2, < 6) GEM @@ -61,7 +61,7 @@ GEM railties (>= 3.0.0) globalid (0.4.1) activesupport (>= 4.2.0) - i18n (0.9.0) + i18n (0.9.1) concurrent-ruby (~> 1.0) loofah (2.1.1) crass (~> 1.0.2) diff --git a/lib/rating/version.rb b/lib/rating/version.rb index 8b9cb0c..d5ab2ca 100644 --- a/lib/rating/version.rb +++ b/lib/rating/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Rating - VERSION = '0.1.0' + VERSION = '0.2.0' end