Skip to content

Commit

Permalink
Update yew requirement from 0.20 to 0.21
Browse files Browse the repository at this point in the history
Updates the requirements on [yew](https://github.com/yewstack/yew) to permit the latest version.
- [Release notes](https://github.com/yewstack/yew/releases)
- [Changelog](https://github.com/yewstack/yew/blob/master/CHANGELOG.md)
- [Commits](yewstack/yew@yew-v0.20.0...yew-v0.21.0)

---
updated-dependencies:
- dependency-name: yew
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed Oct 2, 2023
1 parent 1c9a17c commit 0701b60
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false
[dependencies]
log = "0.4.17"
console_log = { version = "1.0.0", features = ["color"] }
yew = { version = "0.20", features = ["csr"] }
yew = { version = "0.21", features = ["csr"] }
stylist = { path = "../../packages/stylist", features = [
"yew_integration",
"parser",
Expand Down
2 changes: 1 addition & 1 deletion examples/use-media-query/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false
[dependencies]
log = "0.4.17"
console_log = { version = "1.0.0", features = ["color"] }
yew = { version = "0.20", features = ["csr"] }
yew = { version = "0.21", features = ["csr"] }
stylist = { path = "../../packages/stylist", features = [
"yew_integration",
"yew_use_media_query",
Expand Down
2 changes: 1 addition & 1 deletion examples/yew-integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false
[dependencies]
log = "0.4.17"
console_log = { version = "1.0.0", features = ["color"] }
yew = { version = "0.20", features = ["csr"] }
yew = { version = "0.21", features = ["csr"] }
stylist = { path = "../../packages/stylist", features = ["yew_integration"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/yew-proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false
[dependencies]
log = "0.4.17"
console_log = { version = "1.0.0", features = ["color"] }
yew = { version = "0.20", features = ["csr"] }
yew = { version = "0.21", features = ["csr"] }
stylist = { path = "../../packages/stylist", default-features = false, features = [
"yew_integration",
"macros",
Expand Down
2 changes: 1 addition & 1 deletion examples/yew-shadow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false
[dependencies]
log = "0.4.17"
console_log = { version = "1.0.0", features = ["color"] }
yew = { version = "0.20", features = ["csr"] }
yew = { version = "0.21", features = ["csr"] }
stylist = { path = "../../packages/stylist", features = ["yew_integration"] }
once_cell = "1.16.0"

Expand Down
4 changes: 2 additions & 2 deletions examples/yew-ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ required-features = ["ssr"]
[dependencies]
log = "0.4.17"
console_log = { version = "1.0.0", features = ["color"] }
yew = { version = "0.20" }
yew = { version = "0.21" }
stylist = { path = "../../packages/stylist", features = ["yew_integration"] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
Expand All @@ -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.20", features = ["csr", "ssr", "hydration"] }
yew = { version = "0.21", features = ["csr", "ssr", "hydration"] }
stylist = { path = "../../packages/stylist", features = ["yew_integration", "ssr", "hydration"] }

[dev-dependencies.web-sys]
Expand Down
2 changes: 1 addition & 1 deletion examples/yew-theme-context/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false
[dependencies]
log = "0.4.17"
console_log = { version = "1.0.0", features = ["color"] }
yew = { version = "0.20", features = ["csr"] }
yew = { version = "0.21", features = ["csr"] }
stylist = { path = "../../packages/stylist", features = ["yew_integration"] }
once_cell = "1.16.0"

Expand Down
2 changes: 1 addition & 1 deletion examples/yew-theme-hooks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false
[dependencies]
log = "0.4.17"
console_log = { version = "1.0.0", features = ["color"] }
yew = { version = "0.20", features = ["csr"] }
yew = { version = "0.21", features = ["csr"] }
stylist = { path = "../../packages/stylist", features = [
"yew_integration",
"yew_use_style",
Expand Down
4 changes: 2 additions & 2 deletions packages/stylist/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ stylist-macros = { path = "../stylist-macros", version = "0.12", optional = true

once_cell = "1.16.0"
wasm-bindgen = "0.2.83"
yew = { version = "0.20", optional = true, default-features = false }
yew = { version = "0.21", 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"] }
Expand All @@ -47,7 +47,7 @@ features = [
log = "0.4.17"
env_logger = "0.10.0"
trybuild = "1.0.72"
yew = "0.20"
yew = "0.21"
rustversion = "1"

[features]
Expand Down

0 comments on commit 0701b60

Please sign in to comment.