From 6ea4dfb70b05269733ffb15e7b04c67e2b7bdbe1 Mon Sep 17 00:00:00 2001 From: Chris Salzberg Date: Mon, 21 Dec 2020 10:44:09 +0900 Subject: [PATCH] Release 1.0.1 --- CHANGELOG.md | 18 +++++++++++++++++- README.md | 2 +- lib/mobility/version.rb | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc76b87a4..bfcef22e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,24 @@ # Mobility Changelog +### Unreleased +- Remove `Mobility::Plugins::Attributes#each` + ([#475](https://github.com/shioyama/mobility/pull/475)) +- Add public method `Mobility::Plugins::ActiveRecord::Query.build_query` + ([#471](https://github.com/shioyama/mobility/pull/471)) + ## 1.0 -1.0 is a rewrite of many internals of the gem. Please see the [wiki page on v1.0](https://github.com/shioyama/mobility/wiki/Introduction-to-Mobility-v1.0) for more details on how to upgrade. +1.0 is a rewrite of many internals of the gem. Please see the [wiki page on +v1.0](https://github.com/shioyama/mobility/wiki/Introduction-to-Mobility-v1.0) +for more details on how to upgrade. + +### 1.0.1 + +- Make `Mobility::Plugins::ActiveRecord::Query::VirtualRow` and + `Mobility::Plugins::ActiveRecord::Query::QueryExtension` + ([#471](https://github.com/shioyama/mobility/pull/471)) public +- Fix typo in initializer template + ([#474](https://github.com/shioyama/mobility/pull/474)) ### 1.0.0 diff --git a/README.md b/README.md index 8d2cefb5b..04aec68f4 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.0' +gem 'mobility', '~> 1.0.1' ``` ### ActiveRecord (Rails) diff --git a/lib/mobility/version.rb b/lib/mobility/version.rb index 6677bcfe1..490371417 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 = 0 + TINY = 1 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")