From e107ffe98741109e761bcea5851d4f41e9f798b9 Mon Sep 17 00:00:00 2001 From: Washington Botelho Date: Mon, 8 Aug 2022 19:08:41 -0300 Subject: [PATCH] v0.12.0 --- CHANGELOG.md | 14 ++++++++++++++ Gemfile.lock | 2 +- lib/rating/version.rb | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) 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