diff --git a/Cargo.lock b/Cargo.lock index 278d5629c0e..6f7ff3ab55b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3690,7 +3690,7 @@ dependencies = [ [[package]] name = "yew" -version = "0.20.0" +version = "0.21.0" dependencies = [ "base64ct", "bincode", @@ -3718,7 +3718,7 @@ dependencies = [ [[package]] name = "yew-agent" -version = "0.2.0" +version = "0.3.0" dependencies = [ "futures 0.3.28", "gloo-worker 0.4.0", @@ -3730,7 +3730,7 @@ dependencies = [ [[package]] name = "yew-agent-macro" -version = "0.1.0" +version = "0.2.0" dependencies = [ "proc-macro2", "quote", @@ -3742,7 +3742,7 @@ dependencies = [ [[package]] name = "yew-macro" -version = "0.20.0" +version = "0.21.0" dependencies = [ "boolinator", "once_cell", @@ -3758,7 +3758,7 @@ dependencies = [ [[package]] name = "yew-router" -version = "0.17.0" +version = "0.18.0" dependencies = [ "gloo 0.10.0", "js-sys", @@ -3776,7 +3776,7 @@ dependencies = [ [[package]] name = "yew-router-macro" -version = "0.17.0" +version = "0.18.0" dependencies = [ "proc-macro2", "quote", diff --git a/examples/communication_child_to_parent/Cargo.toml b/examples/communication_child_to_parent/Cargo.toml index a23fc8b429e..060284cda95 100644 --- a/examples/communication_child_to_parent/Cargo.toml +++ b/examples/communication_child_to_parent/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" license = "MIT OR Apache-2.0" [dependencies] -yew = { path = "../../packages/yew", features = ["csr"] } \ No newline at end of file +yew = { path = "../../packages/yew", features = ["csr"] } diff --git a/examples/communication_grandparent_to_grandchild/Cargo.toml b/examples/communication_grandparent_to_grandchild/Cargo.toml index e95f1ca9ede..520e226c669 100644 --- a/examples/communication_grandparent_to_grandchild/Cargo.toml +++ b/examples/communication_grandparent_to_grandchild/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" license = "MIT OR Apache-2.0" [dependencies] -yew = { path = "../../packages/yew", features = ["csr"] } \ No newline at end of file +yew = { path = "../../packages/yew", features = ["csr"] } diff --git a/examples/communication_parent_to_child/Cargo.toml b/examples/communication_parent_to_child/Cargo.toml index f6c505cdcf7..4c9aa414d50 100644 --- a/examples/communication_parent_to_child/Cargo.toml +++ b/examples/communication_parent_to_child/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" license = "MIT OR Apache-2.0" [dependencies] -yew = { path = "../../packages/yew", features = ["csr"] } \ No newline at end of file +yew = { path = "../../packages/yew", features = ["csr"] } diff --git a/packages/yew-agent-macro/Cargo.toml b/packages/yew-agent-macro/Cargo.toml index 69548444adf..149198c5cee 100644 --- a/packages/yew-agent-macro/Cargo.toml +++ b/packages/yew-agent-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew-agent-macro" -version = "0.1.0" +version = "0.2.0" edition = "2021" rust-version = "1.64.0" authors = ["Kaede Hoshikawa "] diff --git a/packages/yew-agent/Cargo.toml b/packages/yew-agent/Cargo.toml index fd492a41fb1..72891d4c590 100644 --- a/packages/yew-agent/Cargo.toml +++ b/packages/yew-agent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew-agent" -version = "0.2.0" +version = "0.3.0" authors = ["Hamza "] repository = "https://github.com/yewstack/yew" homepage = "https://yew.rs" @@ -12,12 +12,12 @@ license = "MIT OR Apache-2.0" rust-version = "1.64.0" [dependencies] -yew = { version = "0.20.0", path = "../yew" } +yew = { version = "0.21.0", path = "../yew" } gloo-worker = { version = "0.4", features = ["futures"] } wasm-bindgen = "0.2" serde = { version = "1", features = ["derive"] } futures = "0.3" -yew-agent-macro = { version = "0.1", path = "../yew-agent-macro" } +yew-agent-macro = { version = "0.2", path = "../yew-agent-macro" } [dev-dependencies] serde = "1.0.188" diff --git a/packages/yew-macro/Cargo.toml b/packages/yew-macro/Cargo.toml index 7de16286e07..97c2204b1e0 100644 --- a/packages/yew-macro/Cargo.toml +++ b/packages/yew-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew-macro" -version = "0.20.0" +version = "0.21.0" edition = "2021" authors = ["Justin Starry "] repository = "https://github.com/yewstack/yew" diff --git a/packages/yew-router-macro/Cargo.toml b/packages/yew-router-macro/Cargo.toml index d2fc60697a4..381f09d03c2 100644 --- a/packages/yew-router-macro/Cargo.toml +++ b/packages/yew-router-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew-router-macro" -version = "0.17.0" +version = "0.18.0" authors = ["Hamza "] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/packages/yew-router/Cargo.toml b/packages/yew-router/Cargo.toml index 7d5e336fa2c..1e5624e85b6 100644 --- a/packages/yew-router/Cargo.toml +++ b/packages/yew-router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew-router" -version = "0.17.0" +version = "0.18.0" authors = ["Hamza "] edition = "2021" license = "MIT OR Apache-2.0" @@ -12,8 +12,8 @@ repository = "https://github.com/yewstack/yew" rust-version = "1.64.0" [dependencies] -yew = { version = "0.20.0", path = "../yew", default-features= false } -yew-router-macro = { version = "0.17.0", path = "../yew-router-macro" } +yew = { version = "0.21.0", path = "../yew", default-features= false } +yew-router-macro = { version = "0.18.0", path = "../yew-router-macro" } wasm-bindgen = "0.2" js-sys = "0.3" @@ -35,7 +35,7 @@ features = [ [dev-dependencies] wasm-bindgen-test = "0.3" serde = { version = "1", features = ["derive"] } -yew = { version = "0.20.0", path = "../yew", features = ["csr"] } +yew = { version = "0.21.0", path = "../yew", features = ["csr"] } [dev-dependencies.web-sys] version = "0.3" diff --git a/packages/yew/Cargo.toml b/packages/yew/Cargo.toml index 075046da6bb..1f9fba8c07b 100644 --- a/packages/yew/Cargo.toml +++ b/packages/yew/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew" -version = "0.20.0" +version = "0.21.0" edition = "2021" authors = [ "Denis Kolodin ", @@ -23,7 +23,7 @@ indexmap = { version = "2", features = ["std"] } js-sys = "0.3" slab = "0.4" wasm-bindgen = "0.2" -yew-macro = { version = "^0.20.0", path = "../yew-macro" } +yew-macro = { version = "^0.21.0", path = "../yew-macro" } thiserror = "1.0" futures = { version = "0.3", default-features = false, features = ["std"] } html-escape = { version = "0.2.13", optional = true } diff --git a/tools/benchmark-hooks/Cargo.toml b/tools/benchmark-hooks/Cargo.toml index 22ef8c0f4f4..cf5dba99bf6 100644 --- a/tools/benchmark-hooks/Cargo.toml +++ b/tools/benchmark-hooks/Cargo.toml @@ -12,7 +12,7 @@ rand = { version = "0.8.5", features = ["small_rng"] } getrandom = { version = "0.2.10", features = ["js"] } wasm-bindgen = "0.2.87" web-sys = { version = "0.3.64", features = ["Window"]} -yew = { version = "0.20.0", features = ["csr"], path = "../../packages/yew" } +yew = { version = "0.21.0", features = ["csr"], path = "../../packages/yew" } [package.metadata.wasm-pack.profile.release] wasm-opt = ['-O4'] diff --git a/tools/benchmark-struct/Cargo.toml b/tools/benchmark-struct/Cargo.toml index 27ccfbbdd28..a1db7065461 100644 --- a/tools/benchmark-struct/Cargo.toml +++ b/tools/benchmark-struct/Cargo.toml @@ -12,7 +12,7 @@ rand = { version = "0.8.5", features = ["small_rng"] } getrandom = { version = "0.2.10", features = ["js"] } wasm-bindgen = "0.2.87" web-sys = { version = "0.3.64", features = ["Window"]} -yew = { version = "0.20.0", features = ["csr"], path = "../../packages/yew" } +yew = { version = "0.21.0", features = ["csr"], path = "../../packages/yew" } [package.metadata.wasm-pack.profile.release] wasm-opt = ['-O4']