Skip to content

Commit

Permalink
Release 1.3.0.rc1
Browse files Browse the repository at this point in the history
Releasing this one as a candidate first since it has a breaking change.
  • Loading branch information
shioyama committed Mar 28, 2023
1 parent 7c92da8 commit bc5d7a7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion lib/mobility/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module VERSION
MAJOR = 1
MINOR = 3
TINY = 0
PRE = "alpha"
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
8 changes: 4 additions & 4 deletions mobility.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit bc5d7a7

Please sign in to comment.