diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index b6246ed..85ead89 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -13,15 +13,13 @@ jobs: - ruby-version: 3.1 - ruby-version: 3.0 - ruby-version: 2.7 - - ruby-version: 3.1 - gemfile: gemfiles/rails_4.gemfile - - ruby-version: 3.1 + - ruby-version: 3.2 gemfile: gemfiles/rails_5.0.gemfile - - ruby-version: 3.1 + - ruby-version: 3.2 gemfile: gemfiles/rails_5.1.gemfile - - ruby-version: 3.1 + - ruby-version: 3.2 gemfile: gemfiles/rails_5.2.gemfile - - ruby-version: 3.1 + - ruby-version: 3.2 gemfile: gemfiles/rails_6.0.gemfile steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e67577..1c8a913 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,8 @@ * [#135](https://github.com/radar/distance_of_time_in_words/pull/135): Add support for Ruby 3.2 - [@KinWang-2013](https://github.com/KinWang-2013). * [#135](https://github.com/radar/distance_of_time_in_words/pull/135): Remove support for Ruby 2.4, 2.5 and 2.6 - [@KinWang-2013](https://github.com/KinWang-2013). * [#135](https://github.com/radar/distance_of_time_in_words/pull/135): Add support for Ruby 2.7 - [@KinWang-2013](https://github.com/KinWang-2013). -* [#135](https://github.com/radar/distance_of_time_in_words/pull/135): Add test for Rails versions with Ruby 3.1 - [@KinWang-2013](https://github.com/KinWang-2013). +* [#135](https://github.com/radar/distance_of_time_in_words/pull/135): Add test for Rails versions with Ruby 3.2 - [@KinWang-2013](https://github.com/KinWang-2013). +* [#135](https://github.com/radar/distance_of_time_in_words/pull/135): Remove suport for Rails 4 - [@KinWang-2013](https://github.com/KinWang-2013). * Your contribution here. ## 5.3.3 (2022/04/25) diff --git a/gemfiles/rails_4.gemfile b/gemfiles/rails_4.gemfile deleted file mode 100644 index 74a1d0e..0000000 --- a/gemfiles/rails_4.gemfile +++ /dev/null @@ -1,9 +0,0 @@ -# frozen_string_literal: true - -# This file was generated by Appraisal - -source 'http://rubygems.org' - -gem 'rails', '~> 4.0' - -gemspec path: '../'