diff --git a/CHANGELOG.md b/CHANGELOG.md index db091aea..2ef1be3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +### v0.15.0 + +### Breaking Changes + +- Yew version is bumped to v0.23. + ### v0.14.0 ### Breaking Changes diff --git a/examples/benchmarks/Cargo.toml b/examples/benchmarks/Cargo.toml index 9c029833..55cf0cba 100644 --- a/examples/benchmarks/Cargo.toml +++ b/examples/benchmarks/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.22", features = ["csr"] } +yew = { version = "0.23", features = ["csr"] } stylist = { path = "../../packages/stylist", features = [ "yew_integration", "parser", diff --git a/examples/use-media-query/Cargo.toml b/examples/use-media-query/Cargo.toml index 95e6bd93..a991a62c 100644 --- a/examples/use-media-query/Cargo.toml +++ b/examples/use-media-query/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.22", features = ["csr"] } +yew = { version = "0.23", features = ["csr"] } stylist = { path = "../../packages/stylist", features = [ "yew_integration", "yew_use_media_query", diff --git a/examples/yew-integration/Cargo.toml b/examples/yew-integration/Cargo.toml index 01154010..a7b72e05 100644 --- a/examples/yew-integration/Cargo.toml +++ b/examples/yew-integration/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.22", features = ["csr"] } +yew = { version = "0.23", features = ["csr"] } stylist = { path = "../../packages/stylist", features = ["yew_integration"] } [dev-dependencies] diff --git a/examples/yew-proc-macros/Cargo.toml b/examples/yew-proc-macros/Cargo.toml index 67f840d2..cda8bccd 100644 --- a/examples/yew-proc-macros/Cargo.toml +++ b/examples/yew-proc-macros/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.22", features = ["csr"] } +yew = { version = "0.23", features = ["csr"] } stylist = { path = "../../packages/stylist", default-features = false, features = [ "yew_integration", "macros", diff --git a/examples/yew-shadow/Cargo.toml b/examples/yew-shadow/Cargo.toml index c17d3827..5336f213 100644 --- a/examples/yew-shadow/Cargo.toml +++ b/examples/yew-shadow/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.22", features = ["csr"] } +yew = { version = "0.23", features = ["csr"] } stylist = { path = "../../packages/stylist", features = ["yew_integration"] } once_cell = "1.16.0" diff --git a/examples/yew-ssr/Cargo.toml b/examples/yew-ssr/Cargo.toml index b5ac1b2e..376e9d02 100644 --- a/examples/yew-ssr/Cargo.toml +++ b/examples/yew-ssr/Cargo.toml @@ -16,7 +16,7 @@ required-features = ["ssr"] [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.22" } +yew = { version = "0.23" } stylist = { path = "../../packages/stylist", features = ["yew_integration"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] @@ -30,7 +30,7 @@ gloo-utils = "0.2.0" gloo-timers = { version = "0.3.0", features = ["futures"] } wasm-bindgen-test = "0.3.33" wasm-bindgen = "0.2.83" -yew = { version = "0.22", features = ["csr", "ssr", "hydration"] } +yew = { version = "0.23", features = ["csr", "ssr", "hydration"] } stylist = { path = "../../packages/stylist", features = [ "yew_integration", "ssr", diff --git a/examples/yew-theme-context/Cargo.toml b/examples/yew-theme-context/Cargo.toml index 6f4ee588..7a2b023a 100644 --- a/examples/yew-theme-context/Cargo.toml +++ b/examples/yew-theme-context/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.22", features = ["csr"] } +yew = { version = "0.23", features = ["csr"] } stylist = { path = "../../packages/stylist", features = ["yew_integration"] } once_cell = "1.16.0" diff --git a/examples/yew-theme-hooks/Cargo.toml b/examples/yew-theme-hooks/Cargo.toml index 98d6b7c1..e2a7f7ea 100644 --- a/examples/yew-theme-hooks/Cargo.toml +++ b/examples/yew-theme-hooks/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.22", features = ["csr"] } +yew = { version = "0.23", features = ["csr"] } stylist = { path = "../../packages/stylist", features = [ "yew_integration", "yew_use_style", diff --git a/packages/stylist-core/Cargo.toml b/packages/stylist-core/Cargo.toml index e65639cb..0ce7f853 100644 --- a/packages/stylist-core/Cargo.toml +++ b/packages/stylist-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylist-core" -version = "0.14.0" +version = "0.15.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 5e3e0f45..33bfbf3d 100644 --- a/packages/stylist-macros/Cargo.toml +++ b/packages/stylist-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylist-macros" -version = "0.14.0" +version = "0.15.0" edition = "2021" license = "MIT" repository = "https://github.com/futursolo/stylist-rs" @@ -30,13 +30,13 @@ itertools = "0.12.0" log = "0.4.17" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -stylist-core = { path = "../stylist-core", version = "0.14", features = [ +stylist-core = { path = "../stylist-core", version = "0.15", features = [ "parser", "__proc_macro_workaround", ] } [target.'cfg(target_arch = "wasm32")'.dependencies] -stylist-core = { path = "../stylist-core", version = "0.14", features = [ +stylist-core = { path = "../stylist-core", version = "0.15", features = [ "parser", ] } diff --git a/packages/stylist/Cargo.toml b/packages/stylist/Cargo.toml index 24c74859..f944aca1 100644 --- a/packages/stylist/Cargo.toml +++ b/packages/stylist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylist" -version = "0.14.0" +version = "0.15.0" license = "MIT" repository = "https://github.com/futursolo/stylist-rs" authors = [ @@ -20,12 +20,12 @@ rust-version = "1.84.0" crate-type = ["cdylib", "rlib"] [dependencies] -stylist-core = { path = "../stylist-core", version = "0.14" } -stylist-macros = { path = "../stylist-macros", version = "0.14", optional = true } +stylist-core = { path = "../stylist-core", version = "0.15" } +stylist-macros = { path = "../stylist-macros", version = "0.15", optional = true } once_cell = "1.16.0" wasm-bindgen = "0.2.83" -yew = { version = "0.22", optional = true, default-features = false } +yew = { version = "0.23", optional = true, default-features = false } gloo-events = { version = "0.2.0", optional = true } fastrand = { version = "2.0.0", optional = true } instant = { version = "0.1.12", optional = true, features = ["wasm-bindgen"] } @@ -47,7 +47,7 @@ features = [ log = "0.4.17" env_logger = "0.10.0" trybuild = "1.0.72" -yew = "0.22" +yew = "0.23" rustversion = "1" [features]