File tree Expand file tree Collapse file tree 4 files changed +16
-5
lines changed
Expand file tree Collapse file tree 4 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ### v0.14.0
4+
5+ ### Breaking Changes
6+
7+ - Increase MSRV to 1.84.0.
8+ - Yew version is bumped to v0.22.
9+
10+ ### Other Changes
11+
12+ - Fix non_upper_case_globals lint in some cases.
13+
314### v0.13.0
415
516### Breaking Changes
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ This is a fork of [css-in-rust](https://github.com/lukidoescode/css-in-rust).
1414Add the following to your ` Cargo.toml ` :
1515
1616``` toml
17- stylist = " 0.13 "
17+ stylist = " 0.14 "
1818```
1919
2020## Usage
Original file line number Diff line number Diff line change @@ -30,13 +30,13 @@ itertools = "0.12.0"
3030log = " 0.4.17"
3131
3232[target .'cfg(not(target_arch = "wasm32"))' .dependencies ]
33- stylist-core = { path = " ../stylist-core" , version = " 0.13 " , features = [
33+ stylist-core = { path = " ../stylist-core" , version = " 0.14 " , features = [
3434 " parser" ,
3535 " __proc_macro_workaround" ,
3636] }
3737
3838[target .'cfg(target_arch = "wasm32")' .dependencies ]
39- stylist-core = { path = " ../stylist-core" , version = " 0.13 " , features = [
39+ stylist-core = { path = " ../stylist-core" , version = " 0.14 " , features = [
4040 " parser" ,
4141] }
4242
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ rust-version = "1.84.0"
2020crate-type = [" cdylib" , " rlib" ]
2121
2222[dependencies ]
23- stylist-core = { path = " ../stylist-core" , version = " 0.13 " }
24- stylist-macros = { path = " ../stylist-macros" , version = " 0.13 " , optional = true }
23+ stylist-core = { path = " ../stylist-core" , version = " 0.14 " }
24+ stylist-macros = { path = " ../stylist-macros" , version = " 0.14 " , optional = true }
2525
2626once_cell = " 1.16.0"
2727wasm-bindgen = " 0.2.83"
You can’t perform that action at this time.
0 commit comments