From e3a0e16651f0ea75aea96dca547f7a01f92d0614 Mon Sep 17 00:00:00 2001 From: Chris Salzberg Date: Fri, 24 Jun 2022 22:18:52 +0900 Subject: [PATCH] Release 1.2.9 --- CHANGELOG.md | 5 +++++ README.md | 2 +- lib/mobility/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 275951fc..0edeccc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## 1.2 +### 1.2.9 +- Fix missing method `mobility_attribute?` on Rails 7 + ([#582](https://github.com/shioyama/mobility/pull/582) and + [#584](https://github.com/shioyama/mobility/pull/584)) + ### 1.2.8 - Fix issues with subclassing, such as when using AR STI, fixes [#566](https://github.com/shioyama/mobility/issues/566) diff --git a/README.md b/README.md index 445ea981..f97f1b0e 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.8' +gem 'mobility', '~> 1.2.9' ``` ### ActiveRecord (Rails) diff --git a/lib/mobility/version.rb b/lib/mobility/version.rb index b155ba8f..4a2cdcff 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 = 8 + TINY = 9 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")