diff --git a/CHANGELOG.md b/CHANGELOG.md index 060e38f..6497988 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,19 @@ ### v0.13.0 +### Breaking Changes + - Increase MSRV to 1.66.0. -- Update syn to v2. - Yew version is bumped to v0.21. +### Other Changes + +- Update syn to v2. + ### v0.12.1 +### Other Changes + - Implemented a workaround that mitigates the linker error from Rust compiler (). ## v0.12.0 diff --git a/README.md b/README.md index 3064199..197546e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This is a fork of [css-in-rust](https://github.com/lukidoescode/css-in-rust). Add the following to your `Cargo.toml`: ```toml -stylist = "0.11" +stylist = "0.13" ``` ## Usage diff --git a/packages/stylist-core/Cargo.toml b/packages/stylist-core/Cargo.toml index 4309907..93a32ea 100644 --- a/packages/stylist-core/Cargo.toml +++ b/packages/stylist-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylist-core" -version = "0.12.1" +version = "0.13.0" license = "MIT" repository = "https://github.com/futursolo/stylist-rs" authors = [ diff --git a/packages/stylist-macros/Cargo.toml b/packages/stylist-macros/Cargo.toml index 65a6d8b..64589cc 100644 --- a/packages/stylist-macros/Cargo.toml +++ b/packages/stylist-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylist-macros" -version = "0.12.1" +version = "0.13.0" edition = "2021" license = "MIT" repository = "https://github.com/futursolo/stylist-rs" @@ -30,13 +30,13 @@ itertools = "0.11.0" log = "0.4.17" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -stylist-core = { path = "../stylist-core", version = "0.12", features = [ +stylist-core = { path = "../stylist-core", version = "0.13", features = [ "parser", "__proc_macro_workaround", ] } [target.'cfg(target_arch = "wasm32")'.dependencies] -stylist-core = { path = "../stylist-core", version = "0.12", features = [ +stylist-core = { path = "../stylist-core", version = "0.13", features = [ "parser", ] } diff --git a/packages/stylist/Cargo.toml b/packages/stylist/Cargo.toml index 6fa2e57..ab44712 100644 --- a/packages/stylist/Cargo.toml +++ b/packages/stylist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylist" -version = "0.12.1" +version = "0.13.0" license = "MIT" repository = "https://github.com/futursolo/stylist-rs" authors = [ @@ -20,8 +20,8 @@ rust-version = "1.66.0" crate-type = ["cdylib", "rlib"] [dependencies] -stylist-core = { path = "../stylist-core", version = "0.12" } -stylist-macros = { path = "../stylist-macros", version = "0.12", optional = true } +stylist-core = { path = "../stylist-core", version = "0.13" } +stylist-macros = { path = "../stylist-macros", version = "0.13", optional = true } once_cell = "1.16.0" wasm-bindgen = "0.2.83"