Skip to content

Commit 7e5169e

Browse files
committed
0.5.0-rc2
1 parent 73a85b4 commit 7e5169e

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
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-rc1"
29+
version = "0.5.0-rc2"
3030

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

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

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-rc1`. 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 upcoming `0.5.0` release, which you can install as version `0.5.0-rc2`. 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: 2 additions & 2 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 [email protected]rc1 --features=csr,nightly
26+
cargo add [email protected]rc2 --features=csr,nightly
2727
```
2828

2929
> **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.
3030
3131
Or you can leave off `nightly` if you're using stable Rust
3232

3333
```bash
34-
cargo add [email protected]rc1 --features=csr
34+
cargo add [email protected]rc2 --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.

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

0 commit comments

Comments
 (0)