From 63b3788ef834d950678966f85d21a19845ec8c3f Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Mon, 27 Jan 2025 16:33:49 -0500 Subject: [PATCH] version bump to v4.0.0.rc4 --- CHANGELOG.md | 8 ++++---- Gemfile.lock | 5 ++--- README.md | 5 ----- lib/tailwindcss/version.rb | 2 +- 4 files changed, 7 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56fc71b..7feef6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ -## next / unreleased +# `tailwindcss-rails` Changelog -## next rc / unreleased +## v4.0.0.rc4 / 2025-01-27 - The input file `app/assets/tailwind/application.tailwind.css` has been renamed to `app/assets/tailwind/application.css`. +- Updated README docs on using the upgrade tool to update class names. @EricGusmao -Thanks to @brunoprietog for feedback and advice. ## v4.0.0.rc3 / 2025-01-27 @@ -33,7 +33,7 @@ New task `tailwindcss:upgrade` upgrades many apps cleanly: - The "tailwind" stylesheet link tag will be removed if Propshaft is in use and already handling `app/assets/build/tailwind.css`. - The input file `application.tailwind.css` will be moved from `app/assets/stylesheets` to `app/assets/tailwind`. -Thanks to @EricGusmao, @patriciomacadden, and @excid3 for their feedback, contributions, and advice on the v4 release. +Thanks to @EricGusmao, @patriciomacadden, @excid3, and @brunoprietog for their feedback, contributions, and advice on v4 support. ## v3.3.1 / 2025-01-23 diff --git a/Gemfile.lock b/Gemfile.lock index 91f050c..9c67e7d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - tailwindcss-rails (4.0.0.rc2) + tailwindcss-rails (4.0.0.rc4) railties (>= 7.0.0) tailwindcss-ruby (~> 4.0) @@ -65,7 +65,7 @@ GEM i18n (1.14.7) concurrent-ruby (~> 1.0) io-console (0.8.0) - irb (1.15.0) + irb (1.15.1) pp (>= 0.6.0) rdoc (>= 4.0.0) reline (>= 0.4.2) @@ -89,7 +89,6 @@ GEM net-protocol (0.2.2) timeout net-smtp (0.5.0) - net-protocol nokogiri (1.18.2) mini_portile2 (~> 2.8.2) racc (~> 1.4) diff --git a/README.md b/README.md index 6634b07..37a42c8 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,6 @@ - [Upgrading your application from Tailwind v3 to v4](#upgrading-your-application-from-tailwind-v3-to-v4) * [You don't _have_ to upgrade](#you-dont-_have_-to-upgrade) * [Upgrade steps](#upgrade-steps) - * [Post Upgrade](#post-upgrade) * [Troubleshooting](#troubleshooting) * [Updating CSS class names for v4](#updating-css-class-names-for-v4) - [Developing with Tailwindcss](#developing-with-tailwindcss) @@ -179,10 +178,6 @@ Done in 56ms -### Post Upgrade - - - If this doesn't succeed, it's likely that you've customized your Tailwind configuration and you'll need to do some work to make sure your application upgrades. Please read the [official upgrade guide](https://tailwindcss.com/docs/upgrade-guide)! diff --git a/lib/tailwindcss/version.rb b/lib/tailwindcss/version.rb index d706a5b..2e2dda5 100644 --- a/lib/tailwindcss/version.rb +++ b/lib/tailwindcss/version.rb @@ -1,3 +1,3 @@ module Tailwindcss - VERSION = "4.0.0.rc3" + VERSION = "4.0.0.rc4" end