Skip to content
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 .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
- name: ${{matrix.name}} test suite
working-directory: ${{matrix.name}}
run: |
rm -f Gemfile.lock
bundle remove tailwindcss-ruby || true
bundle add tailwindcss-ruby --path=".."
bundle install --local || bundle install
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# tailwindcss-ruby changelog

## v4.0.0.beta.10

* Update to [Tailwind CSS v4.0.0-beta.10](https://github.com/tailwindlabs/tailwindcss/releases/tag/v4.0.0-beta.10) @excid3

Prerelease documentation at https://tailwindcss.com/docs/v4-beta

Note that this upstream release finally includes linux-musl binaries, and so the native gem platforms are now specialized to `{x86_64,aarch64}-linux-{gnu,musl}`. You may need to update the platforms in your Gemfile.lock using `bundle lock --add-platform`.

However, there are still no upstream armv7 binaries.

## v4.0.0.beta.9

* Update to [Tailwind CSS v4.0.0-beta.9](https://github.com/tailwindlabs/tailwindcss/releases/tag/v4.0.0-beta.9) @flavorjones
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
tailwindcss-ruby (4.0.0.beta.9)
tailwindcss-ruby (4.0.0.beta.10)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion lib/tailwindcss/ruby/upstream.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Tailwindcss
module Ruby
module Upstream
VERSION = "v4.0.0-beta.9"
VERSION = "v4.0.0-beta.10"

# rubygems platform name => upstream release filename
NATIVE_PLATFORMS = {
Expand Down
2 changes: 1 addition & 1 deletion lib/tailwindcss/ruby/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Tailwindcss
module Ruby
VERSION = "4.0.0.beta.9"
VERSION = "4.0.0.beta.10"
end
end
Loading