Skip to content

Commit 98f18e7

Browse files
committed
release: version 0.5.6
1 parent 3f34d9b commit 98f18e7

File tree

5 files changed

+19
-18
lines changed

5 files changed

+19
-18
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ Cargo.lock
1010
.direnv
1111
.envrc
1212

13-
.vscode
13+
.vscode
14+
vendor

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@ members = [
2626
exclude = ["benchmarks", "examples"]
2727

2828
[workspace.package]
29-
version = "0.5.5"
29+
version = "0.5.6"
3030

3131
[workspace.dependencies]
32-
leptos = { path = "./leptos", version = "0.5.5" }
33-
leptos_dom = { path = "./leptos_dom", version = "0.5.5" }
34-
leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.5.5" }
35-
leptos_macro = { path = "./leptos_macro", version = "0.5.5" }
36-
leptos_reactive = { path = "./leptos_reactive", version = "0.5.5" }
37-
leptos_server = { path = "./leptos_server", version = "0.5.5" }
38-
server_fn = { path = "./server_fn", version = "0.5.5" }
39-
server_fn_macro = { path = "./server_fn_macro", version = "0.5.5" }
40-
server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.5.5" }
41-
leptos_config = { path = "./leptos_config", version = "0.5.5" }
42-
leptos_router = { path = "./router", version = "0.5.5" }
43-
leptos_meta = { path = "./meta", version = "0.5.5" }
44-
leptos_integration_utils = { path = "./integrations/utils", version = "0.5.5" }
32+
leptos = { path = "./leptos", version = "0.5.6" }
33+
leptos_dom = { path = "./leptos_dom", version = "0.5.6" }
34+
leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.5.6" }
35+
leptos_macro = { path = "./leptos_macro", version = "0.5.6" }
36+
leptos_reactive = { path = "./leptos_reactive", version = "0.5.6" }
37+
leptos_server = { path = "./leptos_server", version = "0.5.6" }
38+
server_fn = { path = "./server_fn", version = "0.5.6" }
39+
server_fn_macro = { path = "./server_fn_macro", version = "0.5.6" }
40+
server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.5.6" }
41+
leptos_config = { path = "./leptos_config", version = "0.5.6" }
42+
leptos_router = { path = "./router", version = "0.5.6" }
43+
leptos_meta = { path = "./meta", version = "0.5.6" }
44+
leptos_integration_utils = { path = "./integrations/utils", version = "0.5.6" }
4545

4646
[profile.release]
4747
codegen-units = 1

integrations/axum/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! To run in this environment, you need to disable the default feature set and enable
88
//! the `wasm` feature on `leptos_axum` in your `Cargo.toml`.
99
//! ```toml
10-
//! leptos_axum = { version = "0.5.5", default-features = false, features = ["wasm"] }
10+
//! leptos_axum = { version = "", default-features = false, features = ["wasm"] }
1111
//! ```
1212
//!
1313
//! ## Features

meta/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_meta"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
edition = "2021"
55
authors = ["Greg Johnston"]
66
license = "MIT"

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.5.5"
3+
version = "0.5.6"
44
edition = "2021"
55
authors = ["Greg Johnston"]
66
license = "MIT"

0 commit comments

Comments
 (0)