From 659230275a16eca6665eb91912e95962f718511b Mon Sep 17 00:00:00 2001 From: Chris Salzberg Date: Wed, 3 Feb 2021 21:30:29 +0900 Subject: [PATCH] Release 1.0.6 --- 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 1aa2e3204..36fe6e924 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,10 @@ v1.0](https://github.com/shioyama/mobility/wiki/Introduction-to-Mobility-v1.0) for more details on how to upgrade. +### 1.0.6 +- Merge options including defaults into backend options + ([#502](https://github.com/shioyama/mobility/pull/502)) + ### 1.0.5 - Fix duping with AR Table backend, fixes [#490](https://github.com/shioyama/mobility/issues/490) diff --git a/README.md b/README.md index ff9be272f..220c04b9f 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ To use the latest pre-version of Mobility 1.0, add this line to your application's Gemfile: ```ruby -gem 'mobility', '~> 1.0.5' +gem 'mobility', '~> 1.0.6' ``` ### ActiveRecord (Rails) diff --git a/lib/mobility/version.rb b/lib/mobility/version.rb index e24ff006a..f4bc4aac7 100644 --- a/lib/mobility/version.rb +++ b/lib/mobility/version.rb @@ -8,7 +8,7 @@ def self.gem_version module VERSION MAJOR = 1 MINOR = 0 - TINY = 5 + TINY = 6 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")