Skip to content

Commit 4c3bcdc

Browse files
author
GitHub Action
committed
(cargo-release) version {{crate_name}}-v{{version}}
1 parent 5e823e7 commit 4c3bcdc

File tree

12 files changed

+23
-23
lines changed

12 files changed

+23
-23
lines changed

Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/communication_child_to_parent/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ edition = "2021"
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
yew = { path = "../../packages/yew", features = ["csr"] }
9+
yew = { path = "../../packages/yew", features = ["csr"] }

examples/communication_grandparent_to_grandchild/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ edition = "2021"
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
yew = { path = "../../packages/yew", features = ["csr"] }
9+
yew = { path = "../../packages/yew", features = ["csr"] }

examples/communication_parent_to_child/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ edition = "2021"
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
yew = { path = "../../packages/yew", features = ["csr"] }
9+
yew = { path = "../../packages/yew", features = ["csr"] }

packages/yew-agent-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yew-agent-macro"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
rust-version = "1.64.0"
66
authors = ["Kaede Hoshikawa <[email protected]>"]

packages/yew-agent/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yew-agent"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Hamza <[email protected]>"]
55
repository = "https://github.com/yewstack/yew"
66
homepage = "https://yew.rs"
@@ -12,12 +12,12 @@ license = "MIT OR Apache-2.0"
1212
rust-version = "1.64.0"
1313

1414
[dependencies]
15-
yew = { version = "0.20.0", path = "../yew" }
15+
yew = { version = "0.21.0", path = "../yew" }
1616
gloo-worker = { version = "0.4", features = ["futures"] }
1717
wasm-bindgen = "0.2"
1818
serde = { version = "1", features = ["derive"] }
1919
futures = "0.3"
20-
yew-agent-macro = { version = "0.1", path = "../yew-agent-macro" }
20+
yew-agent-macro = { version = "0.2", path = "../yew-agent-macro" }
2121

2222
[dev-dependencies]
2323
serde = "1.0.188"

packages/yew-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yew-macro"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
edition = "2021"
55
authors = ["Justin Starry <[email protected]>"]
66
repository = "https://github.com/yewstack/yew"

packages/yew-router-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yew-router-macro"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
authors = ["Hamza <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

packages/yew-router/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yew-router"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
authors = ["Hamza <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -12,8 +12,8 @@ repository = "https://github.com/yewstack/yew"
1212
rust-version = "1.64.0"
1313

1414
[dependencies]
15-
yew = { version = "0.20.0", path = "../yew", default-features= false }
16-
yew-router-macro = { version = "0.17.0", path = "../yew-router-macro" }
15+
yew = { version = "0.21.0", path = "../yew", default-features= false }
16+
yew-router-macro = { version = "0.18.0", path = "../yew-router-macro" }
1717

1818
wasm-bindgen = "0.2"
1919
js-sys = "0.3"
@@ -35,7 +35,7 @@ features = [
3535
[dev-dependencies]
3636
wasm-bindgen-test = "0.3"
3737
serde = { version = "1", features = ["derive"] }
38-
yew = { version = "0.20.0", path = "../yew", features = ["csr"] }
38+
yew = { version = "0.21.0", path = "../yew", features = ["csr"] }
3939

4040
[dev-dependencies.web-sys]
4141
version = "0.3"

packages/yew/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yew"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
edition = "2021"
55
authors = [
66
"Denis Kolodin <[email protected]>",
@@ -23,7 +23,7 @@ indexmap = { version = "2", features = ["std"] }
2323
js-sys = "0.3"
2424
slab = "0.4"
2525
wasm-bindgen = "0.2"
26-
yew-macro = { version = "^0.20.0", path = "../yew-macro" }
26+
yew-macro = { version = "^0.21.0", path = "../yew-macro" }
2727
thiserror = "1.0"
2828
futures = { version = "0.3", default-features = false, features = ["std"] }
2929
html-escape = { version = "0.2.13", optional = true }

tools/benchmark-hooks/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ rand = { version = "0.8.5", features = ["small_rng"] }
1212
getrandom = { version = "0.2.10", features = ["js"] }
1313
wasm-bindgen = "0.2.87"
1414
web-sys = { version = "0.3.64", features = ["Window"]}
15-
yew = { version = "0.20.0", features = ["csr"], path = "../../packages/yew" }
15+
yew = { version = "0.21.0", features = ["csr"], path = "../../packages/yew" }
1616

1717
[package.metadata.wasm-pack.profile.release]
1818
wasm-opt = ['-O4']

tools/benchmark-struct/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ rand = { version = "0.8.5", features = ["small_rng"] }
1212
getrandom = { version = "0.2.10", features = ["js"] }
1313
wasm-bindgen = "0.2.87"
1414
web-sys = { version = "0.3.64", features = ["Window"]}
15-
yew = { version = "0.20.0", features = ["csr"], path = "../../packages/yew" }
15+
yew = { version = "0.21.0", features = ["csr"], path = "../../packages/yew" }
1616

1717
[package.metadata.wasm-pack.profile.release]
1818
wasm-opt = ['-O4']

0 commit comments

Comments
 (0)