diff --git a/CHANGELOG.md b/CHANGELOG.md index c9829b4a2..74eac10fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,18 @@ ## 0.8 -### 0.8.12 (May 15, 2020) (yanked) +### 0.8.13 (May 27, 2020) + * Fix fallthrough accessor method_missing not passing all options to super - ([#364](https://github.com/shioyama/mobility/pull/364), thanks + ([#364](https://github.com/shioyama/mobility/pull/364), + [#384](https://github.com/shioyama/mobility/pull/384), + [#377](https://github.com/shioyama/mobility/pull/377), thanks [doits](https://github.com/doits)!) +### 0.8.12 (May 15, 2020) + +(yanked) + ### 0.8.11 (May 14, 2020) * Handle select with block ([#359](https://github.com/shioyama/mobility/pull/359), thanks diff --git a/README.md b/README.md index 926b6aafd..6f0fdc7e0 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.13' ``` 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 794d679f3..a39af2ac8 100644 --- a/lib/mobility/version.rb +++ b/lib/mobility/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Mobility - VERSION = "0.8.12" + VERSION = "0.8.13" end