Skip to content

Commit bb526b9

Browse files
committed
v0.7.1
1 parent 8d0239c commit bb526b9

File tree

12 files changed

+28
-18
lines changed

12 files changed

+28
-18
lines changed

CHANGELOG.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## **0.7.0** _(2021-15-08)_
4+
5+
- #### 🛠 Fixes
6+
7+
- [Support Rust 2021 edition in macro codegen when using hydration.](https://github.com/sycamore-rs/sycamore/pull/316)
8+
- [Fix typo in iteration docs.](https://github.com/sycamore-rs/sycamore/pull/317)
9+
- [Fix duplicated text when hydrating a dynamic text node.](https://github.com/sycamore-rs/sycamore/pull/321)
10+
- [Make builder API play well with hydration support.](https://github.com/sycamore-rs/sycamore/pull/322)
11+
312
## **0.7.0** _(2021-12-08)_
413

514
Release post: https://sycamore-rs.netlify.app/news/announcing-v0.7.0
@@ -8,8 +17,8 @@ Release post: https://sycamore-rs.netlify.app/news/announcing-v0.7.0
817

918
- [Implement `TryFromSegments` for `T: Route`.](https://github.com/sycamore-rs/sycamore/pull/281)
1019
This allows the creation of nested routers. See the
11-
[docs](https://sycamore-rs.netlify.app/docs/advanced/routing#nested-routes) for more
12-
information about usage.
20+
[docs](https://sycamore-rs.netlify.app/docs/advanced/routing#nested-routes) for more information
21+
about usage.
1322
- [Make parenthesis optional in `cloned!` macro.](https://github.com/sycamore-rs/sycamore/pull/283)
1423
The following syntax is now accepted, in addition to the old syntax:
1524
```rust

docs/next/advanced/routing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To add routing to your Sycamore app, install the
1111
[`sycamore-router`](https://crates.io/crates/sycamore-router) crate from crates.io.
1212

1313
```toml
14-
sycamore-router = "0.7.0"
14+
sycamore-router = "0.7.1"
1515
```
1616

1717
### Compatibility with `sycamore`

docs/next/getting_started/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ You now need to add Sycamore to your new project's dependencies. Add the followi
5454
`Cargo.toml` file in your project folder:
5555

5656
```toml
57-
sycamore = "0.7.0"
57+
sycamore = "0.7.1"
5858
```
5959

6060
> Note: Sycamore is currently being developed at a rapid pace. To have access to the latest

docs/versioned_docs/v0.7/advanced/routing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To add routing to your Sycamore app, install the
1111
[`sycamore-router`](https://crates.io/crates/sycamore-router) crate from crates.io.
1212

1313
```toml
14-
sycamore-router = "0.7.0"
14+
sycamore-router = "0.7.1"
1515
```
1616

1717
### Compatibility with `sycamore`

docs/versioned_docs/v0.7/basics/iteration.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ view! {
1616
ul {
1717
Keyed(KeyedProps {
1818
iterable: count.handle(),
19-
view: |x| view! {
19+
template: |x| view! {
2020
li { (x) }
2121
},
2222
key: |x| *x,
@@ -37,7 +37,7 @@ view! {
3737
ul {
3838
Indexed(IndexedProps {
3939
iterable: count.handle(),
40-
view: |x| view! {
40+
template: |x| view! {
4141
li { (x) }
4242
},
4343
})

docs/versioned_docs/v0.7/getting_started/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ You now need to add Sycamore to your new project's dependencies. Add the followi
5454
`Cargo.toml` file in your project folder:
5555

5656
```toml
57-
sycamore = "0.7.0"
57+
sycamore = "0.7.1"
5858
```
5959

6060
> Note: Sycamore is currently being developed at a rapid pace. To have access to the latest

packages/sycamore-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "sycamore-macro"
1010
readme = "../../README.md"
1111
repository = "https://github.com/sycamore-rs/sycamore"
12-
version = "0.7.0"
12+
version = "0.7.1"
1313

1414
[lib]
1515
proc-macro = true

packages/sycamore-reactive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "sycamore-reactive"
1010
readme = "../../README.md"
1111
repository = "https://github.com/sycamore-rs/sycamore"
12-
version = "0.7.0"
12+
version = "0.7.1"
1313

1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

packages/sycamore-router-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "sycamore-router-macro"
1010
readme = "../../README.md"
1111
repository = "https://github.com/sycamore-rs/sycamore"
12-
version = "0.7.0"
12+
version = "0.7.1"
1313

1414
[lib]
1515
proc-macro = true

packages/sycamore-router/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ license = "MIT"
99
name = "sycamore-router"
1010
readme = "../../README.md"
1111
repository = "https://github.com/sycamore-rs/sycamore"
12-
version = "0.7.0"
12+
version = "0.7.1"
1313

1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
sycamore = { path = "../sycamore", version = "=0.7.0" }
18-
sycamore-router-macro = { path = "../sycamore-router-macro", version = "=0.7.0" }
17+
sycamore = { path = "../sycamore", version = "0.7.1" }
18+
sycamore-router-macro = { path = "../sycamore-router-macro", version = "0.7.1" }
1919
wasm-bindgen = "0.2.78"
2020

2121
[dependencies.web-sys]

packages/sycamore/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "sycamore"
1010
readme = "../../README.md"
1111
repository = "https://github.com/sycamore-rs/sycamore"
12-
version = "0.7.0"
12+
version = "0.7.1"
1313

1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

@@ -21,8 +21,8 @@ js-sys = "0.3.55"
2121
once_cell = { version = "1.8.0", optional = true }
2222
paste = "1.0.6"
2323
smallvec = "1.7.0"
24-
sycamore-macro = { path = "../sycamore-macro", version = "=0.7.0" }
25-
sycamore-reactive = { path = "../sycamore-reactive", version = "=0.7.0" }
24+
sycamore-macro = { path = "../sycamore-macro", version = "0.7.1" }
25+
sycamore-reactive = { path = "../sycamore-reactive", version = "0.7.1" }
2626
wasm-bindgen = "0.2.78"
2727
wasm-bindgen-futures = { version = "0.4.28", optional = true }
2828

website/src/versions.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ enum VersionedDocsLink {
99
const VERSIONS: &[(&str, VersionedDocsLink)] = &[
1010
("Next", VersionedDocsLink::Next),
1111
// v0.7.x
12-
("v0.7.0", VersionedDocsLink::Some("v0.7")),
12+
("v0.7.1", VersionedDocsLink::Some("v0.7")),
13+
("v0.7.0", VersionedDocsLink::None),
1314
// v0.6.x
1415
("v0.6.3", VersionedDocsLink::Some("v0.6")),
1516
("v0.6.2", VersionedDocsLink::None),

0 commit comments

Comments
 (0)