diff --git a/Cargo.lock b/Cargo.lock index e6e39072b..31a7b62d7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1713,7 +1713,7 @@ dependencies = [ [[package]] name = "hydration_context" -version = "0.3.0" +version = "0.3.1" dependencies = [ "futures", "js-sys", @@ -2026,7 +2026,7 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" [[package]] name = "leptos" -version = "0.8.19" +version = "0.8.20" dependencies = [ "any_spawner", "base64", @@ -2109,7 +2109,7 @@ dependencies = [ [[package]] name = "leptos_axum" -version = "0.8.9" +version = "0.8.10" dependencies = [ "any_spawner", "anyhow", @@ -2193,7 +2193,7 @@ dependencies = [ [[package]] name = "leptos_macro" -version = "0.8.16" +version = "0.8.17" dependencies = [ "attribute-derive", "cfg-if", @@ -2238,7 +2238,7 @@ dependencies = [ [[package]] name = "leptos_router" -version = "0.8.13" +version = "0.8.14" dependencies = [ "any_spawner", "either_of", @@ -3040,7 +3040,7 @@ dependencies = [ [[package]] name = "reactive_stores_macro" -version = "0.4.2" +version = "0.4.3" dependencies = [ "convert_case 0.11.0", "proc-macro-error2", @@ -3563,7 +3563,7 @@ dependencies = [ [[package]] name = "server_fn" -version = "0.8.12" +version = "0.8.13" dependencies = [ "actix-web", "actix-ws", @@ -3901,7 +3901,7 @@ dependencies = [ [[package]] name = "tachys" -version = "0.2.15" +version = "0.2.16" dependencies = [ "any_spawner", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index fb6dc0892..141ac9276 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,14 +48,14 @@ throw_error = { path = "./any_error/", version = "0.3.1" } any_spawner = { path = "./any_spawner/", version = "0.3.0" } const_str_slice_concat = { path = "./const_str_slice_concat", version = "0.1" } either_of = { path = "./either_of/", version = "0.1.9" } -hydration_context = { path = "./hydration_context", version = "0.3.0" } -leptos = { path = "./leptos", version = "0.8.19" } +hydration_context = { path = "./hydration_context", version = "0.3.1" } +leptos = { path = "./leptos", version = "0.8.20" } leptos_config = { path = "./leptos_config", version = "0.8.10" } leptos_dom = { path = "./leptos_dom", version = "0.8.8" } leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.8.6" } leptos_integration_utils = { path = "./integrations/utils", version = "0.8.8" } -leptos_macro = { path = "./leptos_macro", version = "0.8.16" } -leptos_router = { path = "./router", version = "0.8.12" } +leptos_macro = { path = "./leptos_macro", version = "0.8.17" } +leptos_router = { path = "./router", version = "0.8.14" } leptos_router_macro = { path = "./router_macro", version = "0.8.6" } leptos_server = { path = "./leptos_server", version = "0.8.7" } leptos_meta = { path = "./meta", version = "0.8.6" } @@ -64,11 +64,11 @@ oco_ref = { path = "./oco", version = "0.2.1" } or_poisoned = { path = "./or_poisoned", version = "0.1.0" } reactive_graph = { path = "./reactive_graph", version = "0.2.14" } reactive_stores = { path = "./reactive_stores", version = "0.4.3" } -reactive_stores_macro = { path = "./reactive_stores_macro", version = "0.4.2" } -server_fn = { path = "./server_fn", version = "0.8.12" } +reactive_stores_macro = { path = "./reactive_stores_macro", version = "0.4.3" } +server_fn = { path = "./server_fn", version = "0.8.13" } server_fn_macro = { path = "./server_fn_macro", version = "0.8.10" } server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.8.5" } -tachys = { path = "./tachys", version = "0.2.15" } +tachys = { path = "./tachys", version = "0.2.16" } # members deps async-once-cell = { default-features = false, version = "0.5" } diff --git a/hydration_context/Cargo.toml b/hydration_context/Cargo.toml index ea39183a9..a9c3d6c4c 100644 --- a/hydration_context/Cargo.toml +++ b/hydration_context/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hydration_context" -version = "0.3.0" +version = "0.3.1" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md" diff --git a/integrations/axum/Cargo.toml b/integrations/axum/Cargo.toml index b39dddd23..4b7c1ed8f 100644 --- a/integrations/axum/Cargo.toml +++ b/integrations/axum/Cargo.toml @@ -4,7 +4,7 @@ authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "Axum integrations for the Leptos web framework." -version = "0.8.9" +version = "0.8.10" rust-version.workspace = true edition.workspace = true diff --git a/leptos/Cargo.toml b/leptos/Cargo.toml index d2cddeacf..eb36aa712 100644 --- a/leptos/Cargo.toml +++ b/leptos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leptos" -version = "0.8.19" +version = "0.8.20" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" diff --git a/leptos_macro/Cargo.toml b/leptos_macro/Cargo.toml index 913050a79..1164973cf 100644 --- a/leptos_macro/Cargo.toml +++ b/leptos_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leptos_macro" -version = "0.8.16" +version = "0.8.17" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" diff --git a/reactive_stores_macro/Cargo.toml b/reactive_stores_macro/Cargo.toml index 8b451cbc2..a028d4af5 100644 --- a/reactive_stores_macro/Cargo.toml +++ b/reactive_stores_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reactive_stores_macro" -version = "0.4.2" +version = "0.4.3" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md" diff --git a/router/Cargo.toml b/router/Cargo.toml index 6d5fe955d..4ba0f1699 100644 --- a/router/Cargo.toml +++ b/router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leptos_router" -version = "0.8.13" +version = "0.8.14" authors = ["Greg Johnston", "Ben Wishovich"] license = "MIT" readme = "../README.md" diff --git a/server_fn/Cargo.toml b/server_fn/Cargo.toml index fadfbd9ba..ad348342b 100644 --- a/server_fn/Cargo.toml +++ b/server_fn/Cargo.toml @@ -5,7 +5,7 @@ license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "RPC for any web framework." readme = "../README.md" -version = "0.8.12" +version = "0.8.13" rust-version.workspace = true edition.workspace = true diff --git a/tachys/Cargo.toml b/tachys/Cargo.toml index 64de613cf..6d44aa7ad 100644 --- a/tachys/Cargo.toml +++ b/tachys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tachys" -version = "0.2.15" +version = "0.2.16" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md"