From 843f7b37d5fa041df2a8e812b244eb2e686578de Mon Sep 17 00:00:00 2001
From: Philipp Schmid <schmidp@schmidp.com>
Date: Wed, 22 Dec 2021 23:35:32 +0100
Subject: [PATCH 1/2] Add tailwindcss-linux-arm64 support

---
 lib/tailwindcss/upstream.rb | 1 +
 rakelib/package.rake        | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/lib/tailwindcss/upstream.rb b/lib/tailwindcss/upstream.rb
index def45f35..7d6a0339 100644
--- a/lib/tailwindcss/upstream.rb
+++ b/lib/tailwindcss/upstream.rb
@@ -9,6 +9,7 @@ module Upstream
       "x64-mingw32" => "tailwindcss-windows-x64.exe",
       "x86_64-darwin" => "tailwindcss-macos-x64",
       "x86_64-linux" => "tailwindcss-linux-x64",
+      "aarch64-linux" => "tailwindcss-linux-arm64",
     }
   end
 end
diff --git a/rakelib/package.rake b/rakelib/package.rake
index 3ab66623..a7970e67 100644
--- a/rakelib/package.rake
+++ b/rakelib/package.rake
@@ -27,6 +27,7 @@
 #  So the full set of gem files created will be:
 #
 #  - pkg/tailwindcss-rails-1.0.0.gem
+#  - pkg/tailwindcss-rails-1.0.0-aarch64-linux.gem
 #  - pkg/tailwindcss-rails-1.0.0-arm64-darwin.gem
 #  - pkg/tailwindcss-rails-1.0.0-x64-mingw32.gem
 #  - pkg/tailwindcss-rails-1.0.0-x86_64-darwin.gem
@@ -39,6 +40,7 @@
 #  New rake tasks created:
 #
 #  - rake gem:ruby           # Build the ruby gem
+#  - rake gem:aarch64-linux  # Build the aarch64-linux gem
 #  - rake gem:arm64-darwin   # Build the arm64-darwin gem
 #  - rake gem:x64-mingw32    # Build the x64-mingw32 gem
 #  - rake gem:x86_64-darwin  # Build the x86_64-darwin gem

From 8d2f07ed70e7fd63af1703b458abf8a03c50f124 Mon Sep 17 00:00:00 2001
From: Philipp Schmid <schmidp@schmidp.com>
Date: Tue, 28 Dec 2021 23:43:20 +0100
Subject: [PATCH 2/2] Bump for Tailwind 3.0.8

---
 lib/tailwindcss/upstream.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/tailwindcss/upstream.rb b/lib/tailwindcss/upstream.rb
index 7d6a0339..757f8403 100644
--- a/lib/tailwindcss/upstream.rb
+++ b/lib/tailwindcss/upstream.rb
@@ -1,7 +1,7 @@
 module Tailwindcss
   # constants describing the upstream tailwindcss project
   module Upstream
-    VERSION = "v3.0.7"
+    VERSION = "v3.0.8"
 
     # rubygems platform name => upstream release filename
     NATIVE_PLATFORMS = {