Skip to content

Commit

Permalink
release: version 0.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
benwis committed Jan 17, 2024
1 parent 3f34d9b commit 98f18e7
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 18 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ Cargo.lock
.direnv
.envrc

.vscode
.vscode
vendor
28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,22 @@ members = [
exclude = ["benchmarks", "examples"]

[workspace.package]
version = "0.5.5"
version = "0.5.6"

[workspace.dependencies]
leptos = { path = "./leptos", version = "0.5.5" }
leptos_dom = { path = "./leptos_dom", version = "0.5.5" }
leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.5.5" }
leptos_macro = { path = "./leptos_macro", version = "0.5.5" }
leptos_reactive = { path = "./leptos_reactive", version = "0.5.5" }
leptos_server = { path = "./leptos_server", version = "0.5.5" }
server_fn = { path = "./server_fn", version = "0.5.5" }
server_fn_macro = { path = "./server_fn_macro", version = "0.5.5" }
server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.5.5" }
leptos_config = { path = "./leptos_config", version = "0.5.5" }
leptos_router = { path = "./router", version = "0.5.5" }
leptos_meta = { path = "./meta", version = "0.5.5" }
leptos_integration_utils = { path = "./integrations/utils", version = "0.5.5" }
leptos = { path = "./leptos", version = "0.5.6" }
leptos_dom = { path = "./leptos_dom", version = "0.5.6" }
leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.5.6" }
leptos_macro = { path = "./leptos_macro", version = "0.5.6" }
leptos_reactive = { path = "./leptos_reactive", version = "0.5.6" }
leptos_server = { path = "./leptos_server", version = "0.5.6" }
server_fn = { path = "./server_fn", version = "0.5.6" }
server_fn_macro = { path = "./server_fn_macro", version = "0.5.6" }
server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.5.6" }
leptos_config = { path = "./leptos_config", version = "0.5.6" }
leptos_router = { path = "./router", version = "0.5.6" }
leptos_meta = { path = "./meta", version = "0.5.6" }
leptos_integration_utils = { path = "./integrations/utils", version = "0.5.6" }

[profile.release]
codegen-units = 1
Expand Down
2 changes: 1 addition & 1 deletion integrations/axum/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! To run in this environment, you need to disable the default feature set and enable
//! the `wasm` feature on `leptos_axum` in your `Cargo.toml`.
//! ```toml
//! leptos_axum = { version = "0.5.5", default-features = false, features = ["wasm"] }
//! leptos_axum = { version = "", default-features = false, features = ["wasm"] }
//! ```
//!
//! ## Features
Expand Down
2 changes: 1 addition & 1 deletion meta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leptos_meta"
version = "0.5.5"
version = "0.5.6"
edition = "2021"
authors = ["Greg Johnston"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion router/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leptos_router"
version = "0.5.5"
version = "0.5.6"
edition = "2021"
authors = ["Greg Johnston"]
license = "MIT"
Expand Down

0 comments on commit 98f18e7

Please sign in to comment.