This commit is contained in:
Greg Johnston 2024-09-08 19:40:32 -04:00
parent 73f0207a7d
commit 5a57d48913
13 changed files with 33 additions and 33 deletions

View file

@ -40,36 +40,36 @@ members = [
exclude = ["benchmarks", "examples", "projects"] exclude = ["benchmarks", "examples", "projects"]
[workspace.package] [workspace.package]
version = "0.7.0-beta4" version = "0.7.0-beta5"
edition = "2021" edition = "2021"
rust-version = "1.76" rust-version = "1.76"
[workspace.dependencies] [workspace.dependencies]
throw_error = { path = "./any_error/", version = "0.2.0-beta4" } throw_error = { path = "./any_error/", version = "0.2.0-beta5" }
any_spawner = { path = "./any_spawner/", version = "0.1.0" } any_spawner = { path = "./any_spawner/", version = "0.1.0" }
const_str_slice_concat = { path = "./const_str_slice_concat", 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" } either_of = { path = "./either_of/", version = "0.1.0" }
hydration_context = { path = "./hydration_context", version = "0.2.0-beta4" } hydration_context = { path = "./hydration_context", version = "0.2.0-beta5" }
leptos = { path = "./leptos", version = "0.7.0-beta4" } leptos = { path = "./leptos", version = "0.7.0-beta5" }
leptos_config = { path = "./leptos_config", version = "0.7.0-beta4" } leptos_config = { path = "./leptos_config", version = "0.7.0-beta5" }
leptos_dom = { path = "./leptos_dom", version = "0.7.0-beta4" } leptos_dom = { path = "./leptos_dom", version = "0.7.0-beta5" }
leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.0-beta4" } leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.0-beta5" }
leptos_integration_utils = { path = "./integrations/utils", version = "0.7.0-beta4" } leptos_integration_utils = { path = "./integrations/utils", version = "0.7.0-beta5" }
leptos_macro = { path = "./leptos_macro", version = "0.7.0-beta4" } leptos_macro = { path = "./leptos_macro", version = "0.7.0-beta5" }
leptos_router = { path = "./router", version = "0.7.0-beta4" } leptos_router = { path = "./router", version = "0.7.0-beta5" }
leptos_router_macro = { path = "./router_macro", version = "0.7.0-beta4" } leptos_router_macro = { path = "./router_macro", version = "0.7.0-beta5" }
leptos_server = { path = "./leptos_server", version = "0.7.0-beta4" } leptos_server = { path = "./leptos_server", version = "0.7.0-beta5" }
leptos_meta = { path = "./meta", version = "0.7.0-beta4" } leptos_meta = { path = "./meta", version = "0.7.0-beta5" }
next_tuple = { path = "./next_tuple", version = "0.1.0-beta4" } next_tuple = { path = "./next_tuple", version = "0.1.0-beta5" }
oco_ref = { path = "./oco", version = "0.2.0" } oco_ref = { path = "./oco", version = "0.2.0" }
or_poisoned = { path = "./or_poisoned", version = "0.1.0" } or_poisoned = { path = "./or_poisoned", version = "0.1.0" }
reactive_graph = { path = "./reactive_graph", version = "0.1.0-beta4" } reactive_graph = { path = "./reactive_graph", version = "0.1.0-beta5" }
reactive_stores = { path = "./reactive_stores", version = "0.1.0-beta4" } reactive_stores = { path = "./reactive_stores", version = "0.1.0-beta5" }
reactive_stores_macro = { path = "./reactive_stores_macro", version = "0.1.0-beta4" } reactive_stores_macro = { path = "./reactive_stores_macro", version = "0.1.0-beta5" }
server_fn = { path = "./server_fn", version = "0.7.0-beta4" } server_fn = { path = "./server_fn", version = "0.7.0-beta5" }
server_fn_macro = { path = "./server_fn_macro", version = "0.7.0-beta4" } server_fn_macro = { path = "./server_fn_macro", version = "0.7.0-beta5" }
server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.7.0-beta4" } server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.7.0-beta5" }
tachys = { path = "./tachys", version = "0.1.0-beta4" } tachys = { path = "./tachys", version = "0.1.0-beta5" }
[profile.release] [profile.release]
codegen-units = 1 codegen-units = 1

View file

@ -1,6 +1,6 @@
[package] [package]
name = "throw_error" name = "throw_error"
version = "0.2.0-beta4" version = "0.2.0-beta5"
authors = ["Greg Johnston"] authors = ["Greg Johnston"]
license = "MIT" license = "MIT"
readme = "../README.md" readme = "../README.md"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "hydration_context" name = "hydration_context"
version = "0.2.0-beta4" version = "0.2.0-beta5"
authors = ["Greg Johnston"] authors = ["Greg Johnston"]
license = "MIT" license = "MIT"
readme = "../README.md" readme = "../README.md"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "leptos_macro" name = "leptos_macro"
version = "0.7.0-beta4" version = "0.7.0-beta5"
authors = ["Greg Johnston"] authors = ["Greg Johnston"]
license = "MIT" license = "MIT"
repository = "https://github.com/leptos-rs/leptos" repository = "https://github.com/leptos-rs/leptos"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "leptos_meta" name = "leptos_meta"
version = "0.7.0-beta4" version = "0.7.0-beta5"
authors = ["Greg Johnston"] authors = ["Greg Johnston"]
license = "MIT" license = "MIT"
repository = "https://github.com/leptos-rs/leptos" repository = "https://github.com/leptos-rs/leptos"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "next_tuple" name = "next_tuple"
version = "0.1.0-beta4" version = "0.1.0-beta5"
authors = ["Greg Johnston"] authors = ["Greg Johnston"]
license = "MIT" license = "MIT"
readme = "../README.md" readme = "../README.md"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "reactive_graph" name = "reactive_graph"
version = "0.1.0-beta4" version = "0.1.0-beta5"
authors = ["Greg Johnston"] authors = ["Greg Johnston"]
license = "MIT" license = "MIT"
readme = "../README.md" readme = "../README.md"

View file

@ -582,7 +582,7 @@ impl<T, S> Dispose for StoredValue<T, S> {
#[inline(always)] #[inline(always)]
#[track_caller] #[track_caller]
#[deprecated( #[deprecated(
since = "0.7.0-beta4", since = "0.7.0-beta5",
note = "This function is being removed to conform to Rust idioms. Please \ note = "This function is being removed to conform to Rust idioms. Please \
use `StoredValue::new()` or `StoredValue::new_local()` instead." use `StoredValue::new()` or `StoredValue::new_local()` instead."
)] )]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "reactive_stores" name = "reactive_stores"
version = "0.1.0-beta4" version = "0.1.0-beta5"
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true edition.workspace = true

View file

@ -1,6 +1,6 @@
[package] [package]
name = "reactive_stores_macro" name = "reactive_stores_macro"
version = "0.1.0-beta4" version = "0.1.0-beta5"
rust-version.workspace = true rust-version.workspace = true
edition.workspace = true edition.workspace = true

View file

@ -1,6 +1,6 @@
[package] [package]
name = "leptos_router" name = "leptos_router"
version = "0.7.0-beta4" version = "0.7.0-beta5"
authors = ["Greg Johnston", "Ben Wishovich"] authors = ["Greg Johnston", "Ben Wishovich"]
license = "MIT" license = "MIT"
readme = "../README.md" readme = "../README.md"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "leptos_router_macro" name = "leptos_router_macro"
version = "0.7.0-beta4" version = "0.7.0-beta5"
authors = ["Greg Johnston", "Ben Wishovich"] authors = ["Greg Johnston", "Ben Wishovich"]
license = "MIT" license = "MIT"
readme = "../README.md" readme = "../README.md"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "tachys" name = "tachys"
version = "0.1.0-beta4" version = "0.1.0-beta5"
authors = ["Greg Johnston"] authors = ["Greg Johnston"]
license = "MIT" license = "MIT"
readme = "../README.md" readme = "../README.md"