Skip to content

Commit

Permalink
dep: drop feature and bugfix support for Rails 6.1
Browse files Browse the repository at this point in the history
We will still provide security support for the previous minor release
while Rails 6.1 is supported.
  • Loading branch information
flavorjones committed May 1, 2024
1 parent 9412854 commit 3bf5cb9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 23 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,24 +33,6 @@ jobs:
- name: Run tests
run: bin/test

rails6:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rm Gemfile.lock
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
bundler: latest
- name: "Pin to Rails 6.1"
run: |
bundle remove actionmailer
bundle add actionmailer --version "~> 6.1" --skip-install
bundle add railties --version "~> 6.1" --skip-install
bundle install
- name: Run tests
run: bin/test

user-journey:
strategy:
fail-fast: false
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## unreleased

* Bring the scaffold templates up to date with rails/rails as much as possible without breaking 6.1 compatibility. (#357) @kinsomicrote
* Bring the scaffold templates up to date with rails/rails. (#357, #359) @kinsomicrote
* Drop support for Rails 6.0, which reached end-of-life in June 2023.
* Drop feature and bug fix support for Rails 6.1. The previous minor release will still receive security support while Rails 6.1 is supported.


## v2.5.0 / 2024-04-27
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ gemspec
gem "debug", ">= 1.0.0"

group :test do
gem "actionmailer", ">= 6.1.0"
gem "actionmailer", ">= 7.0.0"
end
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
tailwindcss-rails (2.5.0)
railties (>= 6.1.0)
railties (>= 7.0.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -141,7 +141,7 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
actionmailer (>= 6.1.0)
actionmailer (>= 7.0.0)
debug (>= 1.0.0)
tailwindcss-rails!

Expand Down
2 changes: 1 addition & 1 deletion tailwindcss-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ Gem::Specification.new do |spec|
spec.bindir = "exe"
spec.executables << "tailwindcss"

spec.add_dependency "railties", ">= 6.1.0"
spec.add_dependency "railties", ">= 7.0.0"
end

0 comments on commit 3bf5cb9

Please sign in to comment.