Skip to content

Commit a43e2dc

Browse files
authored
Update version to v0.14.0 (#163)
* Update version to v0.14.0 * fix: update version dependency * Add changelog. --------- Co-authored-by: Kaede Hoshikawa <11693215+futursolo@users.noreply.github.com>
1 parent d5f5acd commit a43e2dc

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This is a fork of [css-in-rust](https://github.com/lukidoescode/css-in-rust).
1414
Add the following to your `Cargo.toml`:
1515

1616
```toml
17-
stylist = "0.13"
17+
stylist = "0.14"
1818
```
1919

2020
## Usage

packages/stylist-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ itertools = "0.12.0"
3030
log = "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

packages/stylist/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ rust-version = "1.84.0"
2020
crate-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

2626
once_cell = "1.16.0"
2727
wasm-bindgen = "0.2.83"

0 commit comments

Comments
 (0)