mirror of https://github.com/yewstack/yew
(cargo-release) version {{crate_name}}-v{{version}}
This commit is contained in:
parent
5e823e729d
commit
4c3bcdc692
|
@ -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",
|
||||
|
|
|
@ -6,4 +6,4 @@ edition = "2021"
|
|||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
yew = { path = "../../packages/yew", features = ["csr"] }
|
||||
yew = { path = "../../packages/yew", features = ["csr"] }
|
||||
|
|
|
@ -6,4 +6,4 @@ edition = "2021"
|
|||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
yew = { path = "../../packages/yew", features = ["csr"] }
|
||||
yew = { path = "../../packages/yew", features = ["csr"] }
|
||||
|
|
|
@ -6,4 +6,4 @@ edition = "2021"
|
|||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
yew = { path = "../../packages/yew", features = ["csr"] }
|
||||
yew = { path = "../../packages/yew", features = ["csr"] }
|
||||
|
|
|
@ -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 <futursolo@icloud.com>"]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "yew-agent"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
authors = ["Hamza <muhammadhamza1311@gmail.com>"]
|
||||
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"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "yew-macro"
|
||||
version = "0.20.0"
|
||||
version = "0.21.0"
|
||||
edition = "2021"
|
||||
authors = ["Justin Starry <justin@yew.rs>"]
|
||||
repository = "https://github.com/yewstack/yew"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "yew-router-macro"
|
||||
version = "0.17.0"
|
||||
version = "0.18.0"
|
||||
authors = ["Hamza <muhammadhamza1311@gmail.com>"]
|
||||
edition = "2021"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "yew-router"
|
||||
version = "0.17.0"
|
||||
version = "0.18.0"
|
||||
authors = ["Hamza <muhammadhamza1311@gmail.com>"]
|
||||
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"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "yew"
|
||||
version = "0.20.0"
|
||||
version = "0.21.0"
|
||||
edition = "2021"
|
||||
authors = [
|
||||
"Denis Kolodin <deniskolodin@gmail.com>",
|
||||
|
@ -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 }
|
||||
|
|
|
@ -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']
|
||||
|
|
|
@ -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']
|
||||
|
|
Loading…
Reference in New Issue