From 48a2f13333ae8883ca128e7cd059342ef38ed600 Mon Sep 17 00:00:00 2001 From: Chris McCord Date: Tue, 4 Jan 2022 20:52:19 -0500 Subject: [PATCH] Release 0.1.3 --- CHANGELOG.md | 5 +++++ README.md | 8 ++++---- config/config.exs | 2 +- mix.exs | 2 +- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fedd1c..f947178 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## v0.1.3 (2022-01-04) + * Bump tailwindcss to v3.0.10 + * Inject tailwind imports into app.css on install + * Prune phoenix.css import from app.css on install + ## v0.1.2 (2021-12-21) * Fix tailwind v3 warnings and simplify generated `assets/tailwind.config.js` configuration diff --git a/README.md b/README.md index 0c2918b..5282b6f 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Once installed, change your `config/config.exs` to pick your tailwind version of choice: ```elixir -config :tailwind, version: "3.0.7" +config :tailwind, version: "3.0.10" ``` Now you can install tailwind by running: @@ -61,7 +61,7 @@ directory, the OS environment, and default arguments to the ```elixir config :tailwind, - version: "3.0.7", + version: "3.0.10", default: [ args: ~w( --config=tailwind.config.js @@ -99,7 +99,7 @@ as our css entry point: ```elixir config :tailwind, - version: "3.0.7", + version: "3.0.10", default: [ args: ~w( --config=tailwind.config.js @@ -118,7 +118,7 @@ the web application's asset directory in the configuration: ```elixir config :tailwind, - version: "3.0.7", + version: "3.0.10", default: [ args: ..., cd: Path.expand("../apps//assets", __DIR__) diff --git a/config/config.exs b/config/config.exs index 14d9d33..4ee1650 100644 --- a/config/config.exs +++ b/config/config.exs @@ -1,7 +1,7 @@ import Config config :tailwind, - version: "3.0.7", + version: "3.0.10", another: [ args: ["--help"] ] diff --git a/mix.exs b/mix.exs index 0d61009..df7df2f 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Tailwind.MixProject do use Mix.Project - @version "0.1.2" + @version "0.1.3" @source_url "https://github.com/phoenixframework/tailwind" def project do