Skip to content

Commit e41d3e5

Browse files
committed
docs(book): 🚑 updated versions of sycamore in book
These shouldn't be changed until v0.2.0.
1 parent 0ab791f commit e41d3e5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/src/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Set up a library project with `cargo`, and add the following to the `[dependenci
1414

1515
```toml
1616
perseus = { path = "../../packages/perseus" }
17-
sycamore = { version = "0.6.0", features = ["ssr"] }
18-
sycamore-router = "0.6.0"
17+
sycamore = { version = "0.5", features = ["ssr"] }
18+
sycamore-router = "0.5"
1919
# You only need these for pages that take properties
2020
serde = { version = "1", features = ["derive"] }
2121
serde_json = "1"

docs/src/tutorials/first_app/setup.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ You should now have an `src/` directory and a `Cargo.toml` file, which is what w
6262
# Perseus itself, which we (amazingly) need for a Perseus app
6363
perseus = "0.1"
6464
# Sycamore, the library Perseus depends on for lower-leve reactivity primitivity
65-
sycamore = { version = "0.6.0", features = ["ssr"] }
66-
sycamore-router = "0.6.0"
65+
sycamore = { version = "0.5", features = ["ssr"] }
66+
sycamore-router = "0.5"
6767
# Serde, which lets you work with representations of data, like JSON
6868
serde = { version = "1", features = ["derive"] }
6969
serde_json = "1"

0 commit comments

Comments
 (0)