From cf6bbf4f773e9576f9e6c4f97d6619988ce17aeb Mon Sep 17 00:00:00 2001 From: Chris Salzberg Date: Mon, 27 Sep 2021 21:35:48 +0900 Subject: [PATCH] Release 1.2.1 --- CHANGELOG.md | 12 ++++++++---- README.md | 2 +- lib/mobility/version.rb | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fda88b2..6ddccf91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,15 +8,19 @@ ## 1.2 +### 1.2.1 +- Refactor ColumnFallback plugin + ([#530](https://github.com/shioyama/mobility/pull/530)) + ### 1.2.0 - Add ColumnFallback plugin - ([#512](https://github.com/shioyama/mobility/pull/512)) + ([#512](https://github.com/shioyama/mobility/pull/512)) - Fix Sequel querying on untranslated attributes in `i18n` block - ([#529](https://github.com/shioyama/mobility/pull/529)) + ([#529](https://github.com/shioyama/mobility/pull/529)) - Allow passing configured backend class as third argument to setup - ([#528](https://github.com/shioyama/mobility/pull/528)) + ([#528](https://github.com/shioyama/mobility/pull/528)) - Clearly distinguish backend classes from their configured subclasses - ([#527](https://github.com/shioyama/mobility/pull/527)) + ([#527](https://github.com/shioyama/mobility/pull/527)) ### 1.1.3 - Do not swallow keyword args on ruby 3 in fallthrough accessors diff --git a/README.md b/README.md index dd17afca..51cdf078 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Installation Add this line to your application's Gemfile: ```ruby -gem 'mobility', '~> 1.2.0' +gem 'mobility', '~> 1.2.1' ``` ### ActiveRecord (Rails) diff --git a/lib/mobility/version.rb b/lib/mobility/version.rb index 17ec90d2..ba6236e0 100644 --- a/lib/mobility/version.rb +++ b/lib/mobility/version.rb @@ -8,7 +8,7 @@ def self.gem_version module VERSION MAJOR = 1 MINOR = 2 - TINY = 0 + TINY = 1 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")