Skip to content

Commit 23b615c

Browse files
committed
Updated TailwindCSS to v3.3.0
1 parent cbf5512 commit 23b615c

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11

2+
## v2.0.26 / 2023-03-29
3+
4+
* Updated to [Tailwind CSS v3.3.0](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.3.0) by [@revans](https://github.com/revans).
5+
* Removed the `line-clamp` plugin as it is no longer needed in v3.3.0. It comes out of box now. (#258) by [@revans](https://github.com/revans).
6+
27
## v2.0.25 / 2023-03-14
38

49
* Installer now includes all 5 official Tailwind plugins (adding `line-clamp` and `container-queries`). (#254) by @Kentasmic

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
tailwindcss-rails (2.0.24)
4+
tailwindcss-rails (2.0.26)
55
railties (>= 6.0.0)
66

77
GEM

lib/install/tailwind.config.js

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ module.exports = {
1818
require('@tailwindcss/forms'),
1919
require('@tailwindcss/aspect-ratio'),
2020
require('@tailwindcss/typography'),
21-
require('@tailwindcss/line-clamp'),
2221
require('@tailwindcss/container-queries'),
2322
]
2423
}

lib/tailwindcss/upstream.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Tailwindcss
22
# constants describing the upstream tailwindcss project
33
module Upstream
4-
VERSION = "v3.2.7"
4+
VERSION = "v3.3.0"
55

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

lib/tailwindcss/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Tailwindcss
2-
VERSION = "2.0.25"
2+
VERSION = "2.0.26"
33
end

0 commit comments

Comments
 (0)