Skip to content

Commit be2d014

Browse files
committed
v0.5.1
1 parent 18cdf70 commit be2d014

File tree

8 files changed

+23
-23
lines changed

8 files changed

+23
-23
lines changed

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.0"
29+
version = "0.5.1"
3030

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

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pub fn main() {
4848

4949
### Important Note
5050

51-
This example, and the entire `main` branch, now reflect the upcoming `0.5.0` release. You can use `0.5.0` with the `0.5.0-beta` release on crates.io or by a git dependency on the `main` branch of this repo. [Click here for the 0.4.9 `README`](https://crates.io/crates/leptos).
51+
This example, and the entire `main` branch, now reflect the upcoming `0.5.1` release. You can use `0.5.1` with the `0.5.1-beta` release on crates.io or by a git dependency on the `main` branch of this repo. [Click here for the 0.4.9 `README`](https://crates.io/crates/leptos).
5252

5353
## About the Framework
5454

docs/book/src/01_introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ understand Leptos.
1717

1818
You can find more detailed docs for each part of the API at [Docs.rs](https://docs.rs/leptos/latest/leptos/).
1919

20-
**Important Note**: This current version of the book reflects the upcoming `0.5.0` release, which you can install as version `0.5.0`. The CodeSandbox versions of the examples still reflect `0.4` and earlier APIs and are in the process of being updated.
20+
**Important Note**: This current version of the book reflects the `0.5.1` release. The CodeSandbox versions of the examples still reflect `0.4` and earlier APIs and are in the process of being updated.
2121

2222
> The source code for the book is available [here](https://github.com/leptos-rs/leptos/tree/main/docs/book). PRs for typos or clarification are always welcome.

docs/book/src/02_getting_started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ cargo init leptos-tutorial
2323
`cd` into your new `leptos-tutorial` project and add `leptos` as a dependency
2424

2525
```bash
26-
cargo add leptos@0.5.0 --features=csr,nightly
26+
cargo add leptos --features=csr,nightly
2727
```
2828

29-
> **Note**: This version of the book reflects the upcoming Leptos 0.5.0 release. The CodeSandbox examples have not yet been updated from 0.4 and earlier versions.
29+
> **Note**: This version of the book reflects the Leptos 0.5 release. The CodeSandbox examples have not yet been updated from 0.4 and earlier versions.
3030
3131
Or you can leave off `nightly` if you're using stable Rust
3232

3333
```bash
34-
cargo add leptos@0.5.0 --features=csr
34+
cargo add leptos --features=csr
3535
```
3636

3737
> Using `nightly` Rust, and the `nightly` feature in Leptos enables the function-call syntax for signal getters and setters that is used in most of this book.

examples/gtk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2021"
55

66
[dependencies]
77
leptos = { path = "../../leptos", features = ["csr", "nightly"] }
8-
gtk = { version = "0.5.0", package = "gtk4" }
8+
gtk = { version = "0.5.0", package = "gtk4" }

leptos_macro/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ mod slot;
164164
/// # runtime.dispose();
165165
/// ```
166166
///
167-
/// Class names can include dashes, and since leptos v0.5.0 can include a dash-separated segment of only numbers.
167+
/// Class names can include dashes, and since v0.5.0 can include a dash-separated segment of only numbers.
168168
/// ```rust
169169
/// # use leptos::*;
170170
/// # let runtime = create_runtime();

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

0 commit comments

Comments
 (0)