Skip to content

Commit 073d7c4

Browse files
authored
v0.9.1 (#761)
1 parent 3b84a8b commit 073d7c4

File tree

5 files changed

+32
-16
lines changed

5 files changed

+32
-16
lines changed

CHANGELOG.md

+18-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,24 @@
11
# Changelog
22

3-
## 0.9.2 _(2024-11-01)_
3+
## 0.9.1 _(2024-11-17)_
4+
5+
#### What's Changed
6+
7+
- Fix typo in release post by @lukechu10 in https://github.com/sycamore-rs/sycamore/pull/748
8+
- Router example by @davidon-top in https://github.com/sycamore-rs/sycamore/pull/749
9+
- Allow adding derives to generated prop type for `inline_props` by @davidon-top in https://github.com/sycamore-rs/sycamore/pull/750
10+
- Router refresh by @davidon-top in https://github.com/sycamore-rs/sycamore/pull/751
11+
- Forward attributes on function parameters to generated prop struct in `inline_props` by @lukechu10 in https://github.com/sycamore-rs/sycamore/pull/753
12+
- Update README.md with new details by @lukechu10 in https://github.com/sycamore-rs/sycamore/pull/754
13+
- Update trunk to v0.21.1 in GitHub Actions workflows by @lukechu10 in https://github.com/sycamore-rs/sycamore/pull/756
14+
- Support query parameters in routes by @davidon-top in https://github.com/sycamore-rs/sycamore/pull/752
15+
- Simplify navigate functions in router by @lukechu10 in https://github.com/sycamore-rs/sycamore/pull/759
16+
- Properly support patterns in inline_props by @lukechu10 in https://github.com/sycamore-rs/sycamore/pull/760
17+
18+
## 0.9.0 _(2024-11-01)_
19+
20+
Release Post: https://sycamore.dev/post/announcing-v0-9-0
421

5-
Release Post: https://sycamore.dev/post/announcing-0-9-0
622
Migration Guide: https://sycamore.dev/book/migration/0-8-to-0-9
723

824
#### What's Changed

Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@ members = [
4343
]
4444

4545
[workspace.package]
46-
version = "0.9.0"
46+
version = "0.9.1"
4747

4848
[workspace.dependencies]
49-
sycamore = { path = "packages/sycamore", version = "0.9.0" }
50-
sycamore-core = { path = "packages/sycamore-core", version = "0.9.0" }
51-
sycamore-futures = { path = "packages/sycamore-futures", version = "0.9.0" }
52-
sycamore-macro = { path = "packages/sycamore-macro", version = "0.9.0" }
53-
sycamore-reactive = { path = "packages/sycamore-reactive", version = "0.9.0" }
54-
sycamore-router = { path = "packages/sycamore-router", version = "0.9.0" }
55-
sycamore-router-macro = { path = "packages/sycamore-router-macro", version = "0.9.0" }
56-
sycamore-view-parser = { path = "packages/sycamore-view-parser", version = "0.9.0" }
57-
sycamore-web = { path = "packages/sycamore-web", version = "0.9.0" }
49+
sycamore = { path = "packages/sycamore", version = "0.9.1" }
50+
sycamore-core = { path = "packages/sycamore-core", version = "0.9.1" }
51+
sycamore-futures = { path = "packages/sycamore-futures", version = "0.9.1" }
52+
sycamore-macro = { path = "packages/sycamore-macro", version = "0.9.1" }
53+
sycamore-reactive = { path = "packages/sycamore-reactive", version = "0.9.1" }
54+
sycamore-router = { path = "packages/sycamore-router", version = "0.9.1" }
55+
sycamore-router-macro = { path = "packages/sycamore-router-macro", version = "0.9.1" }
56+
sycamore-view-parser = { path = "packages/sycamore-view-parser", version = "0.9.1" }
57+
sycamore-web = { path = "packages/sycamore-web", version = "0.9.1" }
5858

5959
[profile.bench]
6060
debug = true

docs/next/contributing/roadmap.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ change or removal, depending on circumstances.
1818
- [ ] First-party integrations for popular Rust servers such as Actix, Axum,
1919
Rocket, etc.
2020
- [ ] Iron out some rough edges in `sycamore-router`
21-
- [ ] Router reloading
21+
- [x] Router reloading
2222
([#335](https://github.com/sycamore-rs/sycamore/issues/335))
2323
- [ ] Scroll position saving
2424
([#336](https://github.com/sycamore-rs/sycamore/issues/336))

docs/next/introduction/your-first-app.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ This creates a blank Rust project called `hello-sycamore`. Let's add Sycamore as
8686
a dependency by running:
8787

8888
```bash
89-
cargo add [email protected].0
89+
cargo add [email protected].1
9090
```
9191

9292
You can also do this manually by adding the following line to your `Cargo.toml`
9393
file.
9494

9595
```toml
96-
sycamore = "0.9.0"
96+
sycamore = "0.9.1"
9797
```
9898

9999
## Hello, world!

docs/next/router.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To add routing to your Sycamore app, install the
1616
crates.io.
1717

1818
```toml
19-
sycamore-router = "0.9.0"
19+
sycamore-router = "0.9.1"
2020
```
2121

2222
### Compatibility with `sycamore`

0 commit comments

Comments
 (0)