diff --git a/CHANGELOG.md b/CHANGELOG.md index 02a9c04..fcdcdd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## v0.12.0 + +### News + +- Officially Supports Postgres; + +### Updates + +- Migrates the CI to GitHub Actions; +- This gem does not depends on `git` package anymore; +- Makes this gem requires MFA for security; +- Adds coverage test; +- The method `rated?` now uses a better query; + ## v0.11.0 ### Updates diff --git a/Gemfile.lock b/Gemfile.lock index edb5ecd..9cf0317 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rating (0.11.0) + rating (0.12.0) activerecord GEM diff --git a/lib/rating/version.rb b/lib/rating/version.rb index ad9653f..f805bb2 100644 --- a/lib/rating/version.rb +++ b/lib/rating/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Rating - VERSION = '0.11.0' + VERSION = '0.12.0' end