From 0ac8cca58a74f212d6f3fccdb0cd010f2a23d3f9 Mon Sep 17 00:00:00 2001 From: Sebastien Dubois Date: Mon, 20 Dec 2021 13:15:18 +0100 Subject: [PATCH] Release 0.4.0 --- CHANGELOG.md | 3 +++ Gemfile.lock | 2 +- README.md | 2 +- lib/mobility/action_text/version.rb | 2 +- test_app/Gemfile.lock | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffab725..6cc37f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Mobility Action Text Changelog +### 0.4.0 (2021-12-20) +- Add Rails 7 compatibility. + ### 0.3.0 (2021-10-07) - Fix destroying records ([#12](https://github.com/sedubois/mobility-actiontext/pull/12)). diff --git a/Gemfile.lock b/Gemfile.lock index 2d448f2..2a98a60 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - mobility-actiontext (0.3.0) + mobility-actiontext (0.4.0) mobility (~> 1.2) rails (>= 6.0) diff --git a/README.md b/README.md index 46bb078..8424308 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ This is done through the `Mobility::Backends::ActionText::Translation` model ext After checking out the repo, run `bundle install` to install dependencies. Then, run `cd test_app && bundle exec rails test` to run the tests. -To release a new version, update `lib/mobility/action_text/version.rb` and `CHANGELOG.md`, commit, then run `bundle exec rake release`. This will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org). +To release a new version, update `lib/mobility/action_text/version.rb` and `CHANGELOG.md`, run `bundle`, commit, then run `bundle exec rake release`. This will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org). ## Contributing diff --git a/lib/mobility/action_text/version.rb b/lib/mobility/action_text/version.rb index 9a7cb1d..efdaf83 100644 --- a/lib/mobility/action_text/version.rb +++ b/lib/mobility/action_text/version.rb @@ -2,6 +2,6 @@ module Mobility module ActionText - VERSION = '0.3.0' + VERSION = '0.4.0' end end diff --git a/test_app/Gemfile.lock b/test_app/Gemfile.lock index b4bdb87..676a306 100644 --- a/test_app/Gemfile.lock +++ b/test_app/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - mobility-actiontext (0.3.0) + mobility-actiontext (0.4.0) mobility (~> 1.2) rails (>= 6.0)