diff --git a/CHANGELOG.md b/CHANGELOG.md index 73bb290..f4836ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## [Unreleased] +## [0.23.0] - 2024-10-21 + +- Add options to handle wrapped classes to extend the set of use cases [#109](https://github.com/avencera/rustywind/pull/109), thanks [@dikkadev]](https://github.com/dikkadev]) + ## [0.22.1] - 2024-10-21 - Fix regex for parsing css classes, [#99](https://github.com/avencera/rustywind/pull/99), thanks [@DanikVitek](https://github.com/DanikVitek) diff --git a/Cargo.lock b/Cargo.lock index 78e203e..6c2aeb7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -645,7 +645,7 @@ dependencies = [ "once_cell", "rayon", "regex", - "rustywind_core 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rustywind_core 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "rustywind_vite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "serde", "serde_json", @@ -653,7 +653,7 @@ dependencies = [ [[package]] name = "rustywind_core" -version = "0.1.3" +version = "0.1.4" dependencies = [ "ahash", "aho-corasick", @@ -667,9 +667,9 @@ dependencies = [ [[package]] name = "rustywind_core" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6250a7e2e1e401a3ac10bd14b3cee43aa77f637f23927b550cdfa4883ecc9dc" +checksum = "ed546e8eac5dbbfa768f0c1e2ac9447ab670c681594032c245233e28b89688a9" dependencies = [ "ahash", "aho-corasick", @@ -688,7 +688,7 @@ dependencies = [ "once_cell", "regex", "rustls", - "rustywind_core 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rustywind_core 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "ureq", ] @@ -703,7 +703,7 @@ dependencies = [ "once_cell", "regex", "rustls", - "rustywind_core 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rustywind_core 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "ureq", ] diff --git a/rustywind-cli/Cargo.toml b/rustywind-cli/Cargo.toml index bff9218..de7a21b 100644 --- a/rustywind-cli/Cargo.toml +++ b/rustywind-cli/Cargo.toml @@ -16,7 +16,7 @@ pkg-fmt = "tgz" [dependencies] # rustywind -rustywind_core = { version = "0.1.3" } +rustywind_core = { version = "0.2.0" } rustywind_vite = { version = "0.1.4" } # iter diff --git a/rustywind-core/CHANGELOG.md b/rustywind-core/CHANGELOG.md index 59bb5b1..e3d8fef 100644 --- a/rustywind-core/CHANGELOG.md +++ b/rustywind-core/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## [0.2.0] - 2024-10-21 + +- Add options to handle wrapped classes to extend the set of use cases [#109](https://github.com/avencera/rustywind/pull/109), thanks [@dikkadev]](https://github.com/dikkadev]) + +## [0.1.3] - 2024-10-21 + +- Fix regex for parsing css classes, [#99](https://github.com/avencera/rustywind/pull/99), thanks [@DanikVitek](https://github.com/DanikVitek) + ## [0.1.2] - 2024-05-27 - Made `sort_classes` function public, thanks [@Rolv-Apneseth](https://github.com/Rolv-Apneseth), in [#104](https://github.com/avencera/rustywind/pull/104) diff --git a/rustywind-core/Cargo.toml b/rustywind-core/Cargo.toml index 9f49519..1b2fcf8 100644 --- a/rustywind-core/Cargo.toml +++ b/rustywind-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustywind_core" -version = "0.1.4" +version = "0.2.0" description = "A library for sorting tailwind CSS classes" documentation = "https://docs.rs/rustywind_core" authors.workspace = true