From c622cdb8d517466d4f0ab9a832563f189092d0e1 Mon Sep 17 00:00:00 2001 From: Chris Salzberg Date: Sun, 26 Sep 2021 11:04:45 +0900 Subject: [PATCH] Release 1.2.0 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- lib/mobility/version.rb | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 536077d5..1625a374 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ ## 1.1 +## 1.2 + +### 1.2.0 +- Add ColumnFallback plugin + ([#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)) +- Allow passing configured backend class as third argument to setup + ([#528](https://github.com/shioyama/mobility/pull/528)) +- Clearly distinguish backend classes from their configured subclasses + ([#527](Clearly distinguish backend classes from their configured subclasses)) + ### 1.1.3 - Do not swallow keyword args on ruby 3 in fallthrough accessors ([#520](https://github.com/shioyama/mobility/pull/520)) thanks diff --git a/README.md b/README.md index 4cad15f0..dd17afca 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Installation Add this line to your application's Gemfile: ```ruby -gem 'mobility', '~> 1.1.3' +gem 'mobility', '~> 1.2.0' ``` ### ActiveRecord (Rails) diff --git a/lib/mobility/version.rb b/lib/mobility/version.rb index c485d4e4..17ec90d2 100644 --- a/lib/mobility/version.rb +++ b/lib/mobility/version.rb @@ -9,7 +9,7 @@ module VERSION MAJOR = 1 MINOR = 2 TINY = 0 - PRE = "alpha" + PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end