Skip to content

Commit

Permalink
chore(release): 0.10.0 [skip ci]
Browse files Browse the repository at this point in the history
# [0.10.0](0.9.0...0.10.0) (2022-12-01)

### Bug Fixes

* adjust the parser to handle subcommands better ([217644d](217644d))

### Features

* add align plugin ([3f69b75](3f69b75))
* add arbitrary w and h ([92dcc97](92dcc97))
* add bg plugin arbitrary css support ([cd8f1a2](cd8f1a2))
* add border-style plugin ([05d6512](05d6512))
* add col-end plugin ([d874547](d874547))
* add group-focus modifier ([feebe07](feebe07))
* add italic plugin ([7bb1acc](7bb1acc))
* add line-through plugin by improving has_subsegments check ([0d92ef5](0d92ef5))
* add origin plugin ([c42759c](c42759c))
* add row plugin ([73291ca](73291ca))
* add support for styled components ([744d420](744d420))
* add t, b, l, r, and inset arbitrary css support ([d1469d6](d1469d6))
* include custom fonts in the reset css ([9011241](9011241))
* make border support arbitrary css ([aa48d03](aa48d03))
* make tracking support arbitrary css ([7eaab04](7eaab04))
* support arbitrary CSS plugins ([d7c9331](d7c9331))
  • Loading branch information
semantic-release-bot committed Dec 1, 2022
1 parent 744d420 commit 1c6730a
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
# [0.10.0](https://github.com/arlyon/stailwc/compare/0.9.0...0.10.0) (2022-12-01)


### Bug Fixes

* adjust the parser to handle subcommands better ([217644d](https://github.com/arlyon/stailwc/commit/217644d6b17e981516b4f497bebf8ba4276bc3a2))


### Features

* add align plugin ([3f69b75](https://github.com/arlyon/stailwc/commit/3f69b751e4d1863cfe4d9121ec3b8c1541a2927f))
* add arbitrary w and h ([92dcc97](https://github.com/arlyon/stailwc/commit/92dcc9748790388a8a726007efff27fd10e3fc2b))
* add bg plugin arbitrary css support ([cd8f1a2](https://github.com/arlyon/stailwc/commit/cd8f1a2712a6b564465e84bbdf9870412816c262))
* add border-style plugin ([05d6512](https://github.com/arlyon/stailwc/commit/05d65127d4914520695289c9d337a1c7dec16dc5))
* add col-end plugin ([d874547](https://github.com/arlyon/stailwc/commit/d8745471ff4140ba8ce3238ef31ce7e4dd680c5b))
* add group-focus modifier ([feebe07](https://github.com/arlyon/stailwc/commit/feebe070eb44736d7197b6308c05acfd3659548c))
* add italic plugin ([7bb1acc](https://github.com/arlyon/stailwc/commit/7bb1acc5265409330f748181a552505cf2165083))
* add line-through plugin by improving has_subsegments check ([0d92ef5](https://github.com/arlyon/stailwc/commit/0d92ef5dbd0877ea693c95f715b7769bdcea7e69))
* add origin plugin ([c42759c](https://github.com/arlyon/stailwc/commit/c42759c5b1d5a4f10fad63ae43a47d55f7666b50))
* add row plugin ([73291ca](https://github.com/arlyon/stailwc/commit/73291caffd7a9bef15db9d05c4d1543b50187c09))
* add support for styled components ([744d420](https://github.com/arlyon/stailwc/commit/744d42057b1c813932985efb54f3228f5c0d1340))
* add t, b, l, r, and inset arbitrary css support ([d1469d6](https://github.com/arlyon/stailwc/commit/d1469d628585f2112b8b2ea671778de84b058e46))
* include custom fonts in the reset css ([9011241](https://github.com/arlyon/stailwc/commit/9011241573f63a6a174813c16bfa72c8d73fa8a4))
* make border support arbitrary css ([aa48d03](https://github.com/arlyon/stailwc/commit/aa48d03d4bef0a35dbc21bbdede98676bcaa577c))
* make tracking support arbitrary css ([7eaab04](https://github.com/arlyon/stailwc/commit/7eaab040617126c2521f3da07513826ebe860973))
* support arbitrary CSS plugins ([d7c9331](https://github.com/arlyon/stailwc/commit/d7c933161759153e13e899941bfcfe5fa9b4c587))

# [0.9.0](https://github.com/arlyon/stailwc/compare/0.8.1...0.9.0) (2022-11-05)


Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"
name = "stailwc"
readme = "readme.md"
repository = "https://github.com/arlyon/stailwc"
version ="0.9.0"
version ="0.10.0"

[lib]
crate-type = ["cdylib"]
Expand All @@ -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.9.0", path = "crates/tailwind-config"}
tailwind-parse = {version ="0.9.0", path = "crates/tailwind-parse"}
tailwind-config = {version ="0.10.0", path = "crates/tailwind-config"}
tailwind-parse = {version ="0.10.0", path = "crates/tailwind-parse"}
tracing = "0.1.36"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stailwc",
"version": "0.9.0",
"version": "0.10.0",
"description": "An experimental transpiler to bring tailwind macros to SWC rocket",
"author": "arlyon@me.com",
"license": "MIT",
Expand Down

0 comments on commit 1c6730a

Please sign in to comment.