From 99579bb5f3bf9b3588fe5e7319bcb1b9e83131ec Mon Sep 17 00:00:00 2001 From: Chris Salzberg Date: Sun, 28 Nov 2021 13:46:10 +0900 Subject: [PATCH] Release 1.2.4 --- CHANGELOG.md | 4 ++++ README.md | 2 +- lib/mobility/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 191b6f69..919928f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## 1.2 +### 1.2.4 +- Fix fallbacks performance regression + ([#548](https://github.com/shioyama/mobility/pull/548)) + ### 1.2.3 - Fix passing wrong options to super in fallbacks plugin ([#539](https://github.com/shioyama/mobility/pull/539)) diff --git a/README.md b/README.md index 311515aa..59773f0c 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.3' +gem 'mobility', '~> 1.2.4' ``` ### ActiveRecord (Rails) diff --git a/lib/mobility/version.rb b/lib/mobility/version.rb index 63313e45..b802e8b0 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 = 3 + TINY = 4 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")