From bd62a0e1578a4da0aa5ea6bca1baaf7205456f70 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 5 Nov 2022 13:55:09 +0000 Subject: [PATCH] chore(release): 0.9.0 [skip ci] # [0.9.0](https://github.com/arlyon/stailwc/compare/0.8.1...0.9.0) (2022-11-05) ### Bug Fixes * port `flex-1` and friends to the new plugin structure ([92168da](https://github.com/arlyon/stailwc/commit/92168dace386dbff641cace6a15d9d89eb0fbf86)) * port `flex-grow` to the new plugin structure ([8635bcc](https://github.com/arlyon/stailwc/commit/8635bccff4562d40630157e458c4b5c209576b79)) * port `flex-shrink` to the new plugin structure ([6423247](https://github.com/arlyon/stailwc/commit/642324769d13c8a0af7816aa55f3b48ae2f5c15e)) * prevent console log in development by including cooked css ([bb289ef](https://github.com/arlyon/stailwc/commit/bb289ef103fe989fc1682eff519971e9160c595a)) ### Features * add basic non-configurable prose plugin ([d88a744](https://github.com/arlyon/stailwc/commit/d88a744169919d3c32d14be00eebc821305bc5d3)) * unify and expose the strict option ([3af6a0d](https://github.com/arlyon/stailwc/commit/3af6a0da906b4e3b6f4f7006cd3e8720ff19641d)) --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 6 +++--- package.json | 2 +- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 850ee8a..7987501 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# [0.9.0](https://github.com/arlyon/stailwc/compare/0.8.1...0.9.0) (2022-11-05) + + +### Bug Fixes + +* port `flex-1` and friends to the new plugin structure ([92168da](https://github.com/arlyon/stailwc/commit/92168dace386dbff641cace6a15d9d89eb0fbf86)) +* port `flex-grow` to the new plugin structure ([8635bcc](https://github.com/arlyon/stailwc/commit/8635bccff4562d40630157e458c4b5c209576b79)) +* port `flex-shrink` to the new plugin structure ([6423247](https://github.com/arlyon/stailwc/commit/642324769d13c8a0af7816aa55f3b48ae2f5c15e)) +* prevent console log in development by including cooked css ([bb289ef](https://github.com/arlyon/stailwc/commit/bb289ef103fe989fc1682eff519971e9160c595a)) + + +### Features + +* add basic non-configurable prose plugin ([d88a744](https://github.com/arlyon/stailwc/commit/d88a744169919d3c32d14be00eebc821305bc5d3)) +* unify and expose the strict option ([3af6a0d](https://github.com/arlyon/stailwc/commit/3af6a0da906b4e3b6f4f7006cd3e8720ff19641d)) + ## [0.8.1](https://github.com/arlyon/stailwc/compare/0.8.0...0.8.1) (2022-11-04) diff --git a/Cargo.toml b/Cargo.toml index 3d1c6a8..a70adc1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" name = "stailwc" readme = "readme.md" repository = "https://github.com/arlyon/stailwc" -version ="0.8.1" +version ="0.9.0" [lib] crate-type = ["cdylib"] @@ -29,8 +29,8 @@ serde = "1" serde_json = "1.0.83" serde_path_to_error = "0.1.8" swc_core = {version = "=0.40.16", features = ["ecma_visit", "ecma_ast", "plugin_transform"]} -tailwind-config = {version ="0.8.1", path = "crates/tailwind-config"} -tailwind-parse = {version ="0.8.1", path = "crates/tailwind-parse"} +tailwind-config = {version ="0.9.0", path = "crates/tailwind-config"} +tailwind-parse = {version ="0.9.0", path = "crates/tailwind-parse"} tracing = "0.1.36" [dev-dependencies] diff --git a/package.json b/package.json index 06800f8..bc78479 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stailwc", - "version": "0.8.1", + "version": "0.9.0", "description": "An experimental transpiler to bring tailwind macros to SWC rocket", "author": "arlyon@me.com", "license": "MIT",