From 5c5f8a5bffdc52ad475afcbfab00345a4b77ad4e Mon Sep 17 00:00:00 2001 From: Chris Salzberg Date: Mon, 26 Apr 2021 21:48:52 +0900 Subject: [PATCH] Release 1.1.2 --- 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 055001b1..6976a5f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## 1.1 +### 1.1.2 +- Check whether class responds to mobility_attribute? + ([#515](https://github.com/shioyama/mobility/pull/515)) + ### 1.1.1 - Updated signing key diff --git a/README.md b/README.md index 56350353..f826d1b2 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.1' +gem 'mobility', '~> 1.1.2' ``` ### ActiveRecord (Rails) diff --git a/lib/mobility/version.rb b/lib/mobility/version.rb index 84072f1a..a895730b 100644 --- a/lib/mobility/version.rb +++ b/lib/mobility/version.rb @@ -8,7 +8,7 @@ def self.gem_version module VERSION MAJOR = 1 MINOR = 1 - TINY = 1 + TINY = 2 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")