Skip to content
This repository was archived by the owner on Jul 19, 2020. It is now read-only.

Commit 044ed79

Browse files
bumping up the yew version in Cargo.toml (#107) (#109)
* bumping up the yew version in Cargo.toml (#107) * bumping up the yew version for stdweb * bumping up the yew version of ConsoleService link * bumping up the yew version * Update src/more/debugging.md Co-authored-by: Justin Starry <justin.m.starry@gmail.com>
1 parent b888b89 commit 044ed79

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

‎Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ doc-comment = "0.3.3"
99
wasm-bindgen = "0.2"
1010
wasm-bindgen-test = "0.3.0"
1111
wee_alloc = "0.4"
12-
yew = { version = "0.15.0", features = ["wasm_test"] }
12+
yew = { version = "0.16.0", features = ["wasm_test"] }

‎src/getting-started/choose-web-library.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ You'll need to choose one or the other when adding `yew` to your cargo dependenc
99
{% code title="Cargo.toml" %}
1010
```rust
1111
# Choose `web-sys`
12-
yew = "0.15"
12+
yew = "0.16"
1313

1414
# Choose `stdweb`
15-
yew = { version = "0.15", package = "yew-stdweb" }
15+
yew = { version = "0.16", package = "yew-stdweb" }
1616
```
1717
{% endcode %}
1818

@@ -112,4 +112,4 @@ compiled crate it's best to use only one of the two.
112112
</tr>
113113
</thead>
114114
<tbody></tbody>
115-
</table>
115+
</table>

‎src/getting-started/starter-templates.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ crate-type = ["cdylib"]
2727
# for web_sys
2828
yew = "0.16"
2929
# or for stdweb
30-
# yew = { version = "0.15", package = "yew-stdweb" }
30+
# yew = { version = "0.16", package = "yew-stdweb" }
3131
wasm-bindgen = "0.2"
3232
```
3333
{% endcode %}

‎src/more/debugging.md‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fn main() {
2424
log::info!("Update: {:?}", msg);
2525
```
2626

27-
### **\`\`**[**`ConsoleService`**](https://docs.rs/yew/0.15.0/yew/services/console/struct.ConsoleService.html)**\`\`**
27+
### [`ConsoleService`](https://docs.rs/yew/latest/yew/services/console/struct.ConsoleService.html)
2828

2929
This service is included within yew and is available when the `"services"` feature is enabled:
3030

@@ -51,4 +51,3 @@ change. If this is no longer true or if progress is made, please suggest a chang
5151
\[2019\] [Rust Wasm roadmap](https://rustwasm.github.io/rfcs/007-2019-roadmap.html#debugging)
5252

5353
> Debugging is tricky because much of the story is out of this working group's hands, and depends on both the WebAssembly standardization bodies and the folks implementing browser developer tools instead.
54-

0 commit comments

Comments
 (0)