From 3a8508df6c90f7c16b42f31152209eb29c6aeeb0 Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Sun, 3 Nov 2024 20:19:57 -0500 Subject: [PATCH] rc1 --- Cargo.toml | 42 ++++++++++++++++---------------- any_error/Cargo.toml | 2 +- hydration_context/Cargo.toml | 2 +- leptos_macro/Cargo.toml | 2 +- meta/Cargo.toml | 2 +- next_tuple/Cargo.toml | 2 +- reactive_graph/Cargo.toml | 2 +- reactive_graph/src/wrappers.rs | 2 +- reactive_stores/Cargo.toml | 2 +- reactive_stores_macro/Cargo.toml | 2 +- router/Cargo.toml | 2 +- router_macro/Cargo.toml | 2 +- tachys/Cargo.toml | 17 +++++++++++-- 13 files changed, 47 insertions(+), 34 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2647d15a07..9e2b535c6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,36 +40,36 @@ members = [ exclude = ["benchmarks", "examples", "projects"] [workspace.package] -version = "0.7.0-rc0" +version = "0.7.0-rc1" edition = "2021" rust-version = "1.76" [workspace.dependencies] -throw_error = { path = "./any_error/", version = "0.2.0-rc0" } +throw_error = { path = "./any_error/", version = "0.2.0-rc1" } any_spawner = { path = "./any_spawner/", version = "0.1.0" } const_str_slice_concat = { path = "./const_str_slice_concat", version = "0.1.0" } either_of = { path = "./either_of/", version = "0.1.0" } -hydration_context = { path = "./hydration_context", version = "0.2.0-rc0" } -leptos = { path = "./leptos", version = "0.7.0-rc0" } -leptos_config = { path = "./leptos_config", version = "0.7.0-rc0" } -leptos_dom = { path = "./leptos_dom", version = "0.7.0-rc0" } -leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.0-rc0" } -leptos_integration_utils = { path = "./integrations/utils", version = "0.7.0-rc0" } -leptos_macro = { path = "./leptos_macro", version = "0.7.0-rc0" } -leptos_router = { path = "./router", version = "0.7.0-rc0" } -leptos_router_macro = { path = "./router_macro", version = "0.7.0-rc0" } -leptos_server = { path = "./leptos_server", version = "0.7.0-rc0" } -leptos_meta = { path = "./meta", version = "0.7.0-rc0" } -next_tuple = { path = "./next_tuple", version = "0.1.0-rc0" } +hydration_context = { path = "./hydration_context", version = "0.2.0-rc1" } +leptos = { path = "./leptos", version = "0.7.0-rc1" } +leptos_config = { path = "./leptos_config", version = "0.7.0-rc1" } +leptos_dom = { path = "./leptos_dom", version = "0.7.0-rc1" } +leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.0-rc1" } +leptos_integration_utils = { path = "./integrations/utils", version = "0.7.0-rc1" } +leptos_macro = { path = "./leptos_macro", version = "0.7.0-rc1" } +leptos_router = { path = "./router", version = "0.7.0-rc1" } +leptos_router_macro = { path = "./router_macro", version = "0.7.0-rc1" } +leptos_server = { path = "./leptos_server", version = "0.7.0-rc1" } +leptos_meta = { path = "./meta", version = "0.7.0-rc1" } +next_tuple = { path = "./next_tuple", version = "0.1.0-rc1" } oco_ref = { path = "./oco", version = "0.2.0" } or_poisoned = { path = "./or_poisoned", version = "0.1.0" } -reactive_graph = { path = "./reactive_graph", version = "0.1.0-rc0" } -reactive_stores = { path = "./reactive_stores", version = "0.1.0-rc0" } -reactive_stores_macro = { path = "./reactive_stores_macro", version = "0.1.0-rc0" } -server_fn = { path = "./server_fn", version = "0.7.0-rc0" } -server_fn_macro = { path = "./server_fn_macro", version = "0.7.0-rc0" } -server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.7.0-rc0" } -tachys = { path = "./tachys", version = "0.1.0-rc0" } +reactive_graph = { path = "./reactive_graph", version = "0.1.0-rc1" } +reactive_stores = { path = "./reactive_stores", version = "0.1.0-rc1" } +reactive_stores_macro = { path = "./reactive_stores_macro", version = "0.1.0-rc1" } +server_fn = { path = "./server_fn", version = "0.7.0-rc1" } +server_fn_macro = { path = "./server_fn_macro", version = "0.7.0-rc1" } +server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.7.0-rc1" } +tachys = { path = "./tachys", version = "0.1.0-rc1" } [profile.release] codegen-units = 1 diff --git a/any_error/Cargo.toml b/any_error/Cargo.toml index 6d8cdc3fad..88f30a0bcf 100644 --- a/any_error/Cargo.toml +++ b/any_error/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "throw_error" -version = "0.2.0-rc0" +version = "0.2.0-rc1" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md" diff --git a/hydration_context/Cargo.toml b/hydration_context/Cargo.toml index 7f64672e7c..6f8f423fbf 100644 --- a/hydration_context/Cargo.toml +++ b/hydration_context/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hydration_context" -version = "0.2.0-rc0" +version = "0.2.0-rc1" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md" diff --git a/leptos_macro/Cargo.toml b/leptos_macro/Cargo.toml index cc9e37a357..92d8a9e7a1 100644 --- a/leptos_macro/Cargo.toml +++ b/leptos_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leptos_macro" -version = "0.7.0-rc0" +version = "0.7.0-rc1" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" diff --git a/meta/Cargo.toml b/meta/Cargo.toml index 8987148a16..fdc7c04b8f 100644 --- a/meta/Cargo.toml +++ b/meta/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leptos_meta" -version = "0.7.0-rc0" +version = "0.7.0-rc1" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" diff --git a/next_tuple/Cargo.toml b/next_tuple/Cargo.toml index 36c42fefcb..74495c7d2b 100644 --- a/next_tuple/Cargo.toml +++ b/next_tuple/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "next_tuple" -version = "0.1.0-rc0" +version = "0.1.0-rc1" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md" diff --git a/reactive_graph/Cargo.toml b/reactive_graph/Cargo.toml index 14f96c019a..cd69994459 100644 --- a/reactive_graph/Cargo.toml +++ b/reactive_graph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reactive_graph" -version = "0.1.0-rc0" +version = "0.1.0-rc1" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md" diff --git a/reactive_graph/src/wrappers.rs b/reactive_graph/src/wrappers.rs index 2c9ae2e21b..37ac879401 100644 --- a/reactive_graph/src/wrappers.rs +++ b/reactive_graph/src/wrappers.rs @@ -1078,7 +1078,7 @@ pub mod read { /// ``` #[derive(Debug, PartialEq, Eq)] #[deprecated( - since = "0.7.0-rc0", + since = "0.7.0-rc1", note = "`MaybeSignal` is deprecated in favour of `Signal` which \ is `Copy`, now has a more efficient From implementation \ and other benefits in 0.7." diff --git a/reactive_stores/Cargo.toml b/reactive_stores/Cargo.toml index 258feb63d4..f8f13f8aa4 100644 --- a/reactive_stores/Cargo.toml +++ b/reactive_stores/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reactive_stores" -version = "0.1.0-rc0" +version = "0.1.0-rc1" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md" diff --git a/reactive_stores_macro/Cargo.toml b/reactive_stores_macro/Cargo.toml index 700c123863..2147ca3ec1 100644 --- a/reactive_stores_macro/Cargo.toml +++ b/reactive_stores_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reactive_stores_macro" -version = "0.1.0-rc0" +version = "0.1.0-rc1" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md" diff --git a/router/Cargo.toml b/router/Cargo.toml index 373fd46398..9be6c7eb74 100644 --- a/router/Cargo.toml +++ b/router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leptos_router" -version = "0.7.0-rc0" +version = "0.7.0-rc1" authors = ["Greg Johnston", "Ben Wishovich"] license = "MIT" readme = "../README.md" diff --git a/router_macro/Cargo.toml b/router_macro/Cargo.toml index 60c89a999a..756c732f29 100644 --- a/router_macro/Cargo.toml +++ b/router_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leptos_router_macro" -version = "0.7.0-rc0" +version = "0.7.0-rc1" authors = ["Greg Johnston", "Ben Wishovich"] license = "MIT" readme = "../README.md" diff --git a/tachys/Cargo.toml b/tachys/Cargo.toml index 94a628848b..d4dda932a1 100644 --- a/tachys/Cargo.toml +++ b/tachys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tachys" -version = "0.1.0-rc0" +version = "0.1.0-rc1" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md" @@ -182,4 +182,17 @@ tracing = ["dep:tracing"] [package.metadata.cargo-all-features] denylist = ["tracing", "sledgehammer"] -skip_feature_sets = [["ssr", "hydrate"], ["hydrate", "islands"], ["ssr", "delegation"]] +skip_feature_sets = [ + [ + "ssr", + "hydrate", + ], + [ + "hydrate", + "islands", + ], + [ + "ssr", + "delegation", + ], +]