mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
beta version
This commit is contained in:
parent
6a705e2a21
commit
54401c6f69
10 changed files with 28 additions and 28 deletions
38
Cargo.toml
38
Cargo.toml
|
@ -40,7 +40,7 @@ members = [
|
||||||
exclude = ["benchmarks", "examples"]
|
exclude = ["benchmarks", "examples"]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.7.0-alpha"
|
version = "0.7.0-beta"
|
||||||
rust-version = "1.75"
|
rust-version = "1.75"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
|
@ -48,26 +48,26 @@ 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.2.0-alpha" }
|
hydration_context = { path = "./hydration_context", version = "0.2.0-beta" }
|
||||||
leptos = { path = "./leptos", version = "0.7.0-alpha" }
|
leptos = { path = "./leptos", version = "0.7.0-beta" }
|
||||||
leptos_config = { path = "./leptos_config", version = "0.7.0-alpha" }
|
leptos_config = { path = "./leptos_config", version = "0.7.0-beta" }
|
||||||
leptos_dom = { path = "./leptos_dom", version = "0.7.0-alpha" }
|
leptos_dom = { path = "./leptos_dom", version = "0.7.0-beta" }
|
||||||
leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.0-alpha" }
|
leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.0-beta" }
|
||||||
leptos_integration_utils = { path = "./integrations/utils", version = "0.7.0-alpha" }
|
leptos_integration_utils = { path = "./integrations/utils", version = "0.7.0-beta" }
|
||||||
leptos_macro = { path = "./leptos_macro", version = "0.7.0-alpha" }
|
leptos_macro = { path = "./leptos_macro", version = "0.7.0-beta" }
|
||||||
leptos_router = { path = "./router", version = "0.7.0-alpha" }
|
leptos_router = { path = "./router", version = "0.7.0-beta" }
|
||||||
leptos_server = { path = "./leptos_server", version = "0.7.0-alpha" }
|
leptos_server = { path = "./leptos_server", version = "0.7.0-beta" }
|
||||||
leptos_meta = { path = "./meta", version = "0.7.0-alpha" }
|
leptos_meta = { path = "./meta", version = "0.7.0-beta" }
|
||||||
next_tuple = { path = "./next_tuple", version = "0.1.0-alpha" }
|
next_tuple = { path = "./next_tuple", version = "0.1.0-beta" }
|
||||||
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-alpha" }
|
reactive_graph = { path = "./reactive_graph", version = "0.1.0-beta" }
|
||||||
reactive_stores = { path = "./reactive_stores", version = "0.1.0-alpha" }
|
reactive_stores = { path = "./reactive_stores", version = "0.1.0-beta" }
|
||||||
reactive_stores_macro = { path = "./reactive_stores_macro", version = "0.1.0-alpha" }
|
reactive_stores_macro = { path = "./reactive_stores_macro", version = "0.1.0-beta" }
|
||||||
server_fn = { path = "./server_fn", version = "0.7.0-alpha" }
|
server_fn = { path = "./server_fn", version = "0.7.0-beta" }
|
||||||
server_fn_macro = { path = "./server_fn_macro", version = "0.7.0-alpha" }
|
server_fn_macro = { path = "./server_fn_macro", version = "0.7.0-beta" }
|
||||||
server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.7.0-alpha" }
|
server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.7.0-beta" }
|
||||||
tachys = { path = "./tachys", version = "0.1.0-alpha" }
|
tachys = { path = "./tachys", version = "0.1.0-beta" }
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
codegen-units = 1
|
codegen-units = 1
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "hydration_context"
|
name = "hydration_context"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
version = "0.2.0-alpha"
|
version = "0.2.0-beta"
|
||||||
authors = ["Greg Johnston"]
|
authors = ["Greg Johnston"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "leptos_macro"
|
name = "leptos_macro"
|
||||||
version = "0.7.0-alpha2"
|
version = "0.7.0-beta"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Greg Johnston"]
|
authors = ["Greg Johnston"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "leptos_meta"
|
name = "leptos_meta"
|
||||||
version = "0.7.0-alpha"
|
version = "0.7.0-beta"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Greg Johnston"]
|
authors = ["Greg Johnston"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "next_tuple"
|
name = "next_tuple"
|
||||||
version = "0.1.0-alpha"
|
version = "0.1.0-beta"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Greg Johnston"]
|
authors = ["Greg Johnston"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "reactive_graph"
|
name = "reactive_graph"
|
||||||
version = "0.1.0-alpha"
|
version = "0.1.0-beta"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Greg Johnston"]
|
authors = ["Greg Johnston"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "reactive_stores"
|
name = "reactive_stores"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
version = "0.1.0-alpha"
|
version = "0.1.0-beta"
|
||||||
rust-version.workspace = true
|
rust-version.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "reactive_stores_macro"
|
name = "reactive_stores_macro"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
version = "0.1.0-alpha"
|
version = "0.1.0-beta"
|
||||||
rust-version.workspace = true
|
rust-version.workspace = true
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "leptos_router"
|
name = "leptos_router"
|
||||||
version = "0.7.0-alpha3"
|
version = "0.7.0-beta"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Greg Johnston", "Ben Wishovich"]
|
authors = ["Greg Johnston", "Ben Wishovich"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "tachys"
|
name = "tachys"
|
||||||
version = "0.1.0-alpha3"
|
version = "0.1.0-beta"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Greg Johnston"]
|
authors = ["Greg Johnston"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
Loading…
Reference in a new issue