Skip to content

Commit 6008bfa

Browse files
authored
Merge pull request #45 from excid3/v4.0.0.beta.10
Tailwind v4.0.0.beta.10
2 parents 9c22512 + 91f78e6 commit 6008bfa

File tree

5 files changed

+14
-3
lines changed

5 files changed

+14
-3
lines changed

.github/workflows/downstream.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
- name: ${{matrix.name}} test suite
4545
working-directory: ${{matrix.name}}
4646
run: |
47+
rm -f Gemfile.lock
4748
bundle remove tailwindcss-ruby || true
4849
bundle add tailwindcss-ruby --path=".."
4950
bundle install --local || bundle install

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# tailwindcss-ruby changelog
22

3+
## v4.0.0.beta.10
4+
5+
* Update to [Tailwind CSS v4.0.0-beta.10](https://github.com/tailwindlabs/tailwindcss/releases/tag/v4.0.0-beta.10) @excid3
6+
7+
Prerelease documentation at https://tailwindcss.com/docs/v4-beta
8+
9+
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`.
10+
11+
However, there are still no upstream armv7 binaries.
12+
313
## v4.0.0.beta.9
414

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

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
tailwindcss-ruby (4.0.0.beta.9)
4+
tailwindcss-ruby (4.0.0.beta.10)
55

66
GEM
77
remote: https://rubygems.org/

lib/tailwindcss/ruby/upstream.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Tailwindcss
22
module Ruby
33
module Upstream
4-
VERSION = "v4.0.0-beta.9"
4+
VERSION = "v4.0.0-beta.10"
55

66
# rubygems platform name => upstream release filename
77
NATIVE_PLATFORMS = {

lib/tailwindcss/ruby/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Tailwindcss
44
module Ruby
5-
VERSION = "4.0.0.beta.9"
5+
VERSION = "4.0.0.beta.10"
66
end
77
end

0 commit comments

Comments
 (0)