0.7.0-alpha

This commit is contained in:
Greg Johnston 2024-06-28 14:57:54 -04:00
parent 2d51311362
commit ab886a1258
7 changed files with 25 additions and 24 deletions

View file

@ -38,7 +38,7 @@ members = [
exclude = ["benchmarks", "examples"] exclude = ["benchmarks", "examples"]
[workspace.package] [workspace.package]
version = "0.7.0-preview2" version = "0.7.0-alpha"
rust-version = "1.75" rust-version = "1.75"
[workspace.dependencies] [workspace.dependencies]
@ -46,24 +46,24 @@ throw_error = { path = "./any_error/", version = "0.1" }
any_spawner = { path = "./any_spawner/", version = "0.1" } any_spawner = { path = "./any_spawner/", version = "0.1" }
const_str_slice_concat = { path = "./const_str_slice_concat", version = "0.1" } const_str_slice_concat = { path = "./const_str_slice_concat", version = "0.1" }
either_of = { path = "./either_of/", version = "0.1" } either_of = { path = "./either_of/", version = "0.1" }
hydration_context = { path = "./hydration_context", version = "0.1" } hydration_context = { path = "./hydration_context", version = "0.2.0-alpha" }
leptos = { path = "./leptos", version = "0.7.0-preview2" } leptos = { path = "./leptos", version = "0.7.0-alpha" }
leptos_config = { path = "./leptos_config", version = "0.7.0-preview2" } leptos_config = { path = "./leptos_config", version = "0.7.0-alpha" }
leptos_dom = { path = "./leptos_dom", version = "0.7.0-preview2" } leptos_dom = { path = "./leptos_dom", version = "0.7.0-alpha" }
leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.0-preview2" } leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.0-alpha" }
leptos_integration_utils = { path = "./integrations/utils", version = "0.7.0-preview2" } leptos_integration_utils = { path = "./integrations/utils", version = "0.7.0-alpha" }
leptos_macro = { path = "./leptos_macro", version = "0.7.0-preview2" } leptos_macro = { path = "./leptos_macro", version = "0.7.0-alpha" }
leptos_router = { path = "./router", version = "0.7.0-preview2" } leptos_router = { path = "./router", version = "0.7.0-alpha" }
leptos_server = { path = "./leptos_server", version = "0.7.0-preview2" } leptos_server = { path = "./leptos_server", version = "0.7.0-alpha" }
leptos_meta = { path = "./meta", version = "0.7.0-preview2" } leptos_meta = { path = "./meta", version = "0.7.0-alpha" }
next_tuple = { path = "./next_tuple", version = "0.1.0-preview" } next_tuple = { path = "./next_tuple", version = "0.1.0-alpha" }
oco_ref = { path = "./oco", version = "0.2" } oco_ref = { path = "./oco", version = "0.2" }
or_poisoned = { path = "./or_poisoned", version = "0.1" } or_poisoned = { path = "./or_poisoned", version = "0.1" }
reactive_graph = { path = "./reactive_graph", version = "0.1.0-preview" } reactive_graph = { path = "./reactive_graph", version = "0.1.0-alpha" }
server_fn = { path = "./server_fn", version = "0.7.0-preview2" } server_fn = { path = "./server_fn", version = "0.7.0-alpha" }
server_fn_macro = { path = "./server_fn_macro", version = "0.7.0-preview2" } 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-preview2" } server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.7.0-alpha" }
tachys = { path = "./tachys", version = "0.1.0-preview" } tachys = { path = "./tachys", version = "0.1.0-alpha" }
[profile.release] [profile.release]
codegen-units = 1 codegen-units = 1

View file

@ -1,7 +1,7 @@
[package] [package]
name = "hydration_context" name = "hydration_context"
edition = "2021" edition = "2021"
version = "0.1.0" version = "0.2.0-alpha"
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_meta" name = "leptos_meta"
version = "0.7.0-preview2" version = "0.7.0-alpha"
edition = "2021" edition = "2021"
authors = ["Greg Johnston"] authors = ["Greg Johnston"]
license = "MIT" license = "MIT"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "next_tuple" name = "next_tuple"
version = "0.1.0-preview" version = "0.1.0-alpha"
edition = "2021" edition = "2021"
authors = ["Greg Johnston"] authors = ["Greg Johnston"]
license = "MIT" license = "MIT"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "reactive_graph" name = "reactive_graph"
version = "0.1.0-preview" version = "0.1.0-alpha"
edition = "2021" edition = "2021"
authors = ["Greg Johnston"] authors = ["Greg Johnston"]
license = "MIT" license = "MIT"
@ -37,7 +37,8 @@ nightly = []
serde = ["dep:serde"] serde = ["dep:serde"]
tracing = ["dep:tracing"] tracing = ["dep:tracing"]
hydration = ["dep:hydration_context"] 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 = [] sandboxed-arenas = []
[package.metadata.docs.rs] [package.metadata.docs.rs]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "leptos_router" name = "leptos_router"
version = "0.7.0-preview2" version = "0.7.0-alpha"
edition = "2021" edition = "2021"
authors = ["Greg Johnston", "Ben Wishovich"] authors = ["Greg Johnston", "Ben Wishovich"]
license = "MIT" license = "MIT"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "tachys" name = "tachys"
version = "0.1.0-preview" version = "0.1.0-alpha"
edition = "2021" edition = "2021"
authors = ["Greg Johnston"] authors = ["Greg Johnston"]
license = "MIT" license = "MIT"