Skip to content

dep: drop support for Rails 6.0 #358

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## unreleased

* Bring the scaffold templates up to date with rails/rails as much as possible without breaking 6.1 compatibility. (#357) @kinsomicrote
* Drop support for Rails 6.0, which reached end-of-life in June 2023.


## 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.0.0"
gem "actionmailer", ">= 6.1.0"
end
9 changes: 4 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
tailwindcss-rails (2.4.1)
railties (>= 6.0.0)
tailwindcss-rails (2.5.0)
railties (>= 6.1.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -82,7 +82,6 @@ GEM
date
net-protocol
net-pop (0.1.2)
net-protocol
net-protocol (0.2.2)
timeout
net-smtp (0.5.0)
Expand Down Expand Up @@ -125,7 +124,7 @@ GEM
rake (13.2.1)
rdoc (6.6.3.1)
psych (>= 4.0.0)
reline (0.5.3)
reline (0.5.4)
io-console (~> 0.5)
stringio (3.1.0)
thor (1.3.1)
Expand All @@ -142,7 +141,7 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
actionmailer (>= 6.0.0)
actionmailer (>= 6.1.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.0.0"
spec.add_dependency "railties", ">= 6.1.0"
end
Loading