Skip to content

Commit 28af33d

Browse files
committed
v0.7.2
1 parent 5a3413d commit 28af33d

File tree

10 files changed

+98
-89
lines changed

10 files changed

+98
-89
lines changed

Cargo.lock

Lines changed: 60 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ members = [
4040
exclude = ["benchmarks", "examples", "projects"]
4141

4242
[workspace.package]
43-
version = "0.7.1"
43+
version = "0.7.2"
4444
edition = "2021"
4545
rust-version = "1.76"
4646

@@ -50,25 +50,25 @@ any_spawner = { path = "./any_spawner/", version = "0.2.0" }
5050
const_str_slice_concat = { path = "./const_str_slice_concat", version = "0.1.0" }
5151
either_of = { path = "./either_of/", version = "0.1.0" }
5252
hydration_context = { path = "./hydration_context", version = "0.2.0" }
53-
leptos = { path = "./leptos", version = "0.7.1" }
54-
leptos_config = { path = "./leptos_config", version = "0.7.1" }
55-
leptos_dom = { path = "./leptos_dom", version = "0.7.1" }
56-
leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.1" }
57-
leptos_integration_utils = { path = "./integrations/utils", version = "0.7.1" }
58-
leptos_macro = { path = "./leptos_macro", version = "0.7.1" }
59-
leptos_router = { path = "./router", version = "0.7.1" }
60-
leptos_router_macro = { path = "./router_macro", version = "0.7.1" }
61-
leptos_server = { path = "./leptos_server", version = "0.7.1" }
62-
leptos_meta = { path = "./meta", version = "0.7.1" }
53+
leptos = { path = "./leptos", version = "0.7.2" }
54+
leptos_config = { path = "./leptos_config", version = "0.7.2" }
55+
leptos_dom = { path = "./leptos_dom", version = "0.7.2" }
56+
leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.2" }
57+
leptos_integration_utils = { path = "./integrations/utils", version = "0.7.2" }
58+
leptos_macro = { path = "./leptos_macro", version = "0.7.2" }
59+
leptos_router = { path = "./router", version = "0.7.2" }
60+
leptos_router_macro = { path = "./router_macro", version = "0.7.2" }
61+
leptos_server = { path = "./leptos_server", version = "0.7.2" }
62+
leptos_meta = { path = "./meta", version = "0.7.2" }
6363
next_tuple = { path = "./next_tuple", version = "0.1.0" }
6464
oco_ref = { path = "./oco", version = "0.2.0" }
6565
or_poisoned = { path = "./or_poisoned", version = "0.1.0" }
6666
reactive_graph = { path = "./reactive_graph", version = "0.1.0" }
6767
reactive_stores = { path = "./reactive_stores", version = "0.1.0" }
6868
reactive_stores_macro = { path = "./reactive_stores_macro", version = "0.1.0" }
69-
server_fn = { path = "./server_fn", version = "0.7.1" }
70-
server_fn_macro = { path = "./server_fn_macro", version = "0.7.1" }
71-
server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.7.1" }
69+
server_fn = { path = "./server_fn", version = "0.7.2" }
70+
server_fn_macro = { path = "./server_fn_macro", version = "0.7.2" }
71+
server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.7.2" }
7272
tachys = { path = "./tachys", version = "0.1.0" }
7373

7474
[profile.release]
@@ -80,4 +80,7 @@ opt-level = 'z'
8080
skip_feature_sets = [["csr", "ssr"], ["csr", "hydrate"], ["ssr", "hydrate"]]
8181

8282
[workspace.lints.rust]
83-
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(leptos_debuginfo)', 'cfg(erase_components)'] }
83+
unexpected_cfgs = { level = "warn", check-cfg = [
84+
'cfg(leptos_debuginfo)',
85+
'cfg(erase_components)',
86+
] }

leptos/tests/test_examples/suspense-tests/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

leptos_macro/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leptos_macro"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
authors = ["Greg Johnston"]
55
license = "MIT"
66
repository = "https://github.com/leptos-rs/leptos"
@@ -83,4 +83,7 @@ skip_feature_sets = [
8383
rustdoc-args = ["--generate-link-to-definition"]
8484

8585
[lints.rust]
86-
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(leptos_debuginfo)', 'cfg(erase_components)'] }
86+
unexpected_cfgs = { level = "warn", check-cfg = [
87+
'cfg(leptos_debuginfo)',
88+
'cfg(erase_components)',
89+
] }

meta/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leptos_meta"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
authors = ["Greg Johnston"]
55
license = "MIT"
66
repository = "https://github.com/leptos-rs/leptos"
@@ -34,4 +34,4 @@ rustdoc-args = ["--generate-link-to-definition"]
3434
denylist = ["tracing"]
3535

3636
[lints.rust]
37-
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(leptos_debuginfo)'] }
37+
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(leptos_debuginfo)'] }

reactive_stores/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "reactive_stores"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Greg Johnston"]
55
license = "MIT"
66
readme = "../README.md"

router/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leptos_router"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
authors = ["Greg Johnston", "Ben Wishovich"]
55
license = "MIT"
66
readme = "../README.md"

router_macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "leptos_router_macro"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
authors = ["Greg Johnston", "Ben Wishovich"]
55
license = "MIT"
66
readme = "../README.md"
@@ -21,4 +21,4 @@ quote = "1.0"
2121
leptos_router = { path = "../router" }
2222

2323
[lints.rust]
24-
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(leptos_debuginfo)'] }
24+
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(leptos_debuginfo)'] }

server_fn/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tachys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tachys"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Greg Johnston"]
55
license = "MIT"
66
readme = "../README.md"

0 commit comments

Comments
 (0)