Skip to content

Commit

Permalink
docs(book): 🚑 updated versions of sycamore in book
Browse files Browse the repository at this point in the history
These shouldn't be changed until v0.2.0.
  • Loading branch information
arctic-hen7 committed Sep 18, 2021
1 parent 0ab791f commit e41d3e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/src/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Set up a library project with `cargo`, and add the following to the `[dependenci

```toml
perseus = { path = "../../packages/perseus" }
sycamore = { version = "0.6.0", features = ["ssr"] }
sycamore-router = "0.6.0"
sycamore = { version = "0.5", features = ["ssr"] }
sycamore-router = "0.5"
# You only need these for pages that take properties
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
4 changes: 2 additions & 2 deletions docs/src/tutorials/first_app/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ You should now have an `src/` directory and a `Cargo.toml` file, which is what w
# Perseus itself, which we (amazingly) need for a Perseus app
perseus = "0.1"
# Sycamore, the library Perseus depends on for lower-leve reactivity primitivity
sycamore = { version = "0.6.0", features = ["ssr"] }
sycamore-router = "0.6.0"
sycamore = { version = "0.5", features = ["ssr"] }
sycamore-router = "0.5"
# Serde, which lets you work with representations of data, like JSON
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down

0 comments on commit e41d3e5

Please sign in to comment.