Skip to content

dep: tailwind 3.4.7 #383

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 2 commits into from
Jul 27, 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
2 changes: 1 addition & 1 deletion lib/tailwindcss/upstream.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Tailwindcss
# constants describing the upstream tailwindcss project
module Upstream
VERSION = "v3.4.6"
VERSION = "v3.4.7"

# rubygems platform name => upstream release filename
NATIVE_PLATFORMS = {
Expand Down
6 changes: 6 additions & 0 deletions package/tailwindcss-v3.4.7-checksums.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
8f8b5cd32fc35843ec24bbcdb214e972df6a9c485bf4d4fd049140fbcc766bcc tailwindcss-macos-x64
0eda3bc8fe90506b7b9e5cb930312042730b76a7f18026d19414d48fbb3100ed tailwindcss-macos-arm64
3c2321e66718f39e48388707ce8b587946338f82ef3d636c8ee19670514d3394 tailwindcss-linux-x64
4146a6f534fffb27f95de9926d7806a6e432eeb7e55cb8850a57c4e062689c2b tailwindcss-linux-arm64
85c4c71618f0bfcdb0edf246ed6ee394a7addb8af34ed7dbdce9298279243994 tailwindcss-linux-armv7
e6891c3d181314b7d78382fe93121ff8957a9dbb1132a47afb064c0ed1f906e4 tailwindcss-windows-x64.exe
8 changes: 6 additions & 2 deletions rakelib/package.rake
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,12 @@ end

desc "Validate checksums for tailwindcss binaries"
task "check" => exepaths do
sha_filename = "sha256sums.txt"
sha_url = tailwindcss_download_url(sha_filename)
sha_filename = File.absolute_path("../package/tailwindcss-#{Tailwindcss::Upstream::VERSION}-checksums.txt", __dir__)
sha_url = if File.exist?(sha_filename)
sha_filename
else
sha_url = tailwindcss_download_url("sha256sums.txt")
end
gemspec = TAILWINDCSS_RAILS_GEMSPEC

checksums = URI.open(sha_url).each_line.map do |line|
Expand Down