From ab886a1258537a43c324239368514021a91fa825 Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Fri, 28 Jun 2024 14:57:54 -0400 Subject: [PATCH] `0.7.0-alpha` --- Cargo.toml | 34 +++++++++++++++++----------------- hydration_context/Cargo.toml | 2 +- meta/Cargo.toml | 2 +- next_tuple/Cargo.toml | 2 +- reactive_graph/Cargo.toml | 5 +++-- router/Cargo.toml | 2 +- tachys/Cargo.toml | 2 +- 7 files changed, 25 insertions(+), 24 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 780f3199f..4879617fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ members = [ exclude = ["benchmarks", "examples"] [workspace.package] -version = "0.7.0-preview2" +version = "0.7.0-alpha" rust-version = "1.75" [workspace.dependencies] @@ -46,24 +46,24 @@ throw_error = { path = "./any_error/", version = "0.1" } any_spawner = { path = "./any_spawner/", version = "0.1" } const_str_slice_concat = { path = "./const_str_slice_concat", version = "0.1" } either_of = { path = "./either_of/", version = "0.1" } -hydration_context = { path = "./hydration_context", version = "0.1" } -leptos = { path = "./leptos", version = "0.7.0-preview2" } -leptos_config = { path = "./leptos_config", version = "0.7.0-preview2" } -leptos_dom = { path = "./leptos_dom", version = "0.7.0-preview2" } -leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.0-preview2" } -leptos_integration_utils = { path = "./integrations/utils", version = "0.7.0-preview2" } -leptos_macro = { path = "./leptos_macro", version = "0.7.0-preview2" } -leptos_router = { path = "./router", version = "0.7.0-preview2" } -leptos_server = { path = "./leptos_server", version = "0.7.0-preview2" } -leptos_meta = { path = "./meta", version = "0.7.0-preview2" } -next_tuple = { path = "./next_tuple", version = "0.1.0-preview" } +hydration_context = { path = "./hydration_context", version = "0.2.0-alpha" } +leptos = { path = "./leptos", version = "0.7.0-alpha" } +leptos_config = { path = "./leptos_config", version = "0.7.0-alpha" } +leptos_dom = { path = "./leptos_dom", version = "0.7.0-alpha" } +leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.0-alpha" } +leptos_integration_utils = { path = "./integrations/utils", version = "0.7.0-alpha" } +leptos_macro = { path = "./leptos_macro", version = "0.7.0-alpha" } +leptos_router = { path = "./router", version = "0.7.0-alpha" } +leptos_server = { path = "./leptos_server", version = "0.7.0-alpha" } +leptos_meta = { path = "./meta", version = "0.7.0-alpha" } +next_tuple = { path = "./next_tuple", version = "0.1.0-alpha" } oco_ref = { path = "./oco", version = "0.2" } or_poisoned = { path = "./or_poisoned", version = "0.1" } -reactive_graph = { path = "./reactive_graph", version = "0.1.0-preview" } -server_fn = { path = "./server_fn", version = "0.7.0-preview2" } -server_fn_macro = { path = "./server_fn_macro", version = "0.7.0-preview2" } -server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.7.0-preview2" } -tachys = { path = "./tachys", version = "0.1.0-preview" } +reactive_graph = { path = "./reactive_graph", version = "0.1.0-alpha" } +server_fn = { path = "./server_fn", version = "0.7.0-alpha" } +server_fn_macro = { path = "./server_fn_macro", version = "0.7.0-alpha" } +server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.7.0-alpha" } +tachys = { path = "./tachys", version = "0.1.0-alpha" } [profile.release] codegen-units = 1 diff --git a/hydration_context/Cargo.toml b/hydration_context/Cargo.toml index 7d08a08a7..b5fce2ccd 100644 --- a/hydration_context/Cargo.toml +++ b/hydration_context/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hydration_context" edition = "2021" -version = "0.1.0" +version = "0.2.0-alpha" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md" diff --git a/meta/Cargo.toml b/meta/Cargo.toml index 86e9034ec..8d12d749b 100644 --- a/meta/Cargo.toml +++ b/meta/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leptos_meta" -version = "0.7.0-preview2" +version = "0.7.0-alpha" edition = "2021" authors = ["Greg Johnston"] license = "MIT" diff --git a/next_tuple/Cargo.toml b/next_tuple/Cargo.toml index aecb0adc3..68352edad 100644 --- a/next_tuple/Cargo.toml +++ b/next_tuple/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "next_tuple" -version = "0.1.0-preview" +version = "0.1.0-alpha" edition = "2021" authors = ["Greg Johnston"] license = "MIT" diff --git a/reactive_graph/Cargo.toml b/reactive_graph/Cargo.toml index 433f55087..63c93206e 100644 --- a/reactive_graph/Cargo.toml +++ b/reactive_graph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reactive_graph" -version = "0.1.0-preview" +version = "0.1.0-alpha" edition = "2021" authors = ["Greg Johnston"] license = "MIT" @@ -37,7 +37,8 @@ nightly = [] serde = ["dep:serde"] tracing = ["dep:tracing"] hydration = ["dep:hydration_context"] -effects = [] # whether to run effects: should be disabled for something like server rendering +effects = [ +] # whether to run effects: should be disabled for something like server rendering sandboxed-arenas = [] [package.metadata.docs.rs] diff --git a/router/Cargo.toml b/router/Cargo.toml index 5958953dc..f2c4b1f4f 100644 --- a/router/Cargo.toml +++ b/router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leptos_router" -version = "0.7.0-preview2" +version = "0.7.0-alpha" edition = "2021" authors = ["Greg Johnston", "Ben Wishovich"] license = "MIT" diff --git a/tachys/Cargo.toml b/tachys/Cargo.toml index fdddc2487..673e1f0d6 100644 --- a/tachys/Cargo.toml +++ b/tachys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tachys" -version = "0.1.0-preview" +version = "0.1.0-alpha" edition = "2021" authors = ["Greg Johnston"] license = "MIT"