From 71c5bb6ee2cf60971de922e8d41f672945cc9a90 Mon Sep 17 00:00:00 2001 From: Chris Salzberg Date: Fri, 15 May 2020 22:37:48 +0900 Subject: [PATCH] Release 0.8.12 --- CHANGELOG.md | 9 ++++++++- README.md | 2 +- lib/mobility/version.rb | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8aaef81a4..f309bb0f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,15 @@ ## 0.8 +### 0.8.12 (May 15, 2020) +* Fix fallthrough accessor method_missing not passing all options to super + ([#364](https://github.com/shioyama/mobility/pull/364), thanks + [doits](https://github.com/doits)!) + ### 0.8.11 (May 14, 2020) -* Handle select with block ([#359](https://github.com/shioyama/mobility/pull/359)) +* Handle select with block + ([#359](https://github.com/shioyama/mobility/pull/359), thanks + [dlcmh](https://github.com/dlcmh)!) ### 0.8.10 (February 11, 2020) * Enforce case_sensitive comparison for Rails 6.1 diff --git a/README.md b/README.md index 926b6aafd..08d3af5ec 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Installation Add this line to your application's Gemfile: ```ruby -gem 'mobility', '~> 0.8.11' +gem 'mobility', '~> 0.8.12' ``` Mobility is cryptographically signed. To be sure the gem you install hasn't diff --git a/lib/mobility/version.rb b/lib/mobility/version.rb index 50f293b9f..794d679f3 100644 --- a/lib/mobility/version.rb +++ b/lib/mobility/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Mobility - VERSION = "0.8.11" + VERSION = "0.8.12" end