From bc5d7a7a71136cfb783ebd1fdb1497495f347aa2 Mon Sep 17 00:00:00 2001 From: Chris Salzberg Date: Tue, 28 Mar 2023 16:16:05 +0900 Subject: [PATCH] Release 1.3.0.rc1 Releasing this one as a candidate first since it has a breaking change. --- CHANGELOG.md | 7 ++++++- README.md | 2 +- lib/mobility/version.rb | 2 +- mobility.gemspec | 8 ++++---- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca3cb559..1c4a572d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Mobility Changelog -## Unreleased +## 1.3 + +### 1.3.0.rc1 + +This version includes potentially breaking chnages for jsonb and hstore +backends. See PRs below for details. - Fix ActiveRecord JSONB blank values ([#536](https://github.com/shioyama/mobility/pull/536)) diff --git a/README.md b/README.md index f97f1b0e..669fe47c 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.9' +gem 'mobility', '~> 1.3.0.rc1' ``` ### ActiveRecord (Rails) diff --git a/lib/mobility/version.rb b/lib/mobility/version.rb index 68a2830d..f54783a9 100644 --- a/lib/mobility/version.rb +++ b/lib/mobility/version.rb @@ -9,7 +9,7 @@ module VERSION MAJOR = 1 MINOR = 3 TINY = 0 - PRE = "alpha" + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/mobility.gemspec b/mobility.gemspec index 0624df8f..eae4ed93 100644 --- a/mobility.gemspec +++ b/mobility.gemspec @@ -39,10 +39,10 @@ Gem::Specification.new do |spec| spec.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/ spec.post_install_message = %q{ -Warning: Mobility v1.0 includes backwards-incompatible changes (mostly around configuration). +Warning: Mobility v1.3.x includes potentially backwards-incompatible changes +for jsonb/hstore backends. -If you are upgrading from an earlier version, please see: -- https://github.com/shioyama/mobility/releases/tag/v1.0.0 -- https://github.com/shioyama/mobility/wiki/Introduction-to-Mobility-v1.0 +Please see: +- https://github.com/shioyama/mobility/issues/535 } end