Skip to content

Commit c4a1571

Browse files
committed
Bump versions now that Tailwind CSS v4.0 is out
Also, bump old version used to test updates. It might help if GitHub does any sort of caching of release assets.
1 parent 903bc5d commit c4a1571

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

config/config.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Config
22

33
config :tailwind,
4-
version: "4.0.0-beta.3",
4+
version: "4.0.0",
55
another: [
66
args: ["--help"]
77
]

lib/tailwind.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
defmodule Tailwind do
22
# https://github.com/tailwindlabs/tailwindcss/releases
3-
@latest_version "4.0.0-beta.3"
3+
@latest_version "4.0.0"
44

55
@moduledoc """
66
Tailwind is an installer and runner for [tailwind](https://tailwindcss.com/).

test/tailwind_test.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ defmodule TailwindTest do
3030
end
3131

3232
test "updates on install" do
33-
Application.put_env(:tailwind, :version, "3.0.3")
33+
Application.put_env(:tailwind, :version, "3.4.17")
3434
Mix.Task.rerun("tailwind.install", ["--if-missing"])
3535

3636
assert ExUnit.CaptureIO.capture_io(fn ->
3737
assert Tailwind.run(:default, ["--help"]) == 0
38-
end) =~ "3.0.3"
38+
end) =~ "3.4.17"
3939

4040
Application.delete_env(:tailwind, :version)
4141

0 commit comments

Comments
 (0)