Skip to content

Commit

Permalink
Update repo links from master to v0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
jstarry committed Aug 16, 2020
1 parent 218a300 commit 3caacac
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ If you're using the `/ci/run_tests.sh` script you only need to set the environme

### Macro tests

When adding or updating tests, please make sure you have updated the appropriate `stderr` file, which you can find [here](https://github.com/yewstack/yew/tree/master/yew-macro/tests/macro) for the `html!` macro. These files ensure that macro compilation errors are correct and easy to understand.
When adding or updating tests, please make sure you have updated the appropriate `stderr` file, which you can find [here](https://github.com/yewstack/yew/tree/v0.17/yew-macro/tests/macro) for the `html!` macro. These files ensure that macro compilation errors are correct and easy to understand.

To update or generate a new `stderr` file you can run `TRYBUILD=overwrite cargo test --test macro_test` or `TRYBUILD=overwrite cargo test --test derive_props_test` from the `yew-macro` directory.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Yew is a community effort and we welcome all kinds of contributions, big or smal

#### 🤠 New to Yew?

Start learning about the framework by helping us improve our [documentation](https://github.com/yewstack/yew/tree/master/docs). Pull requests which improve test coverage are also very welcome.
Start learning about the framework by helping us improve our [documentation](https://github.com/yewstack/yew/tree/v0.17/docs). Pull requests which improve test coverage are also very welcome.

#### 😎 Looking for inspiration?

Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ Agents that live in their own separate web worker \(Private and Public\) incur s

## Further reading

* The [pub\_sub](https://github.com/yewstack/yew/tree/master/examples/pub_sub) example shows how components can use agents to communicate with each other.
* The [pub\_sub](https://github.com/yewstack/yew/tree/v0.17/examples/pub_sub) example shows how components can use agents to communicate with each other.
2 changes: 1 addition & 1 deletion docs/getting-started/project-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ The preferred web workflow tool before the introduction of `wasm-pack` and `wasm
</td>
<td style="text-align:left"><a href="https://github.com/yewstack/yew/blob/master/examples/build.sh">Build script</a> for
Yew examples</td>
<td style="text-align:left"><a href="https://www.github.com/yewstack/yew/tree/master/yew-stdweb/examples">Build script</a> for
<td style="text-align:left"><a href="https://www.github.com/yewstack/yew/tree/v0.17/yew-stdweb/examples">Build script</a> for
Yew examples</td>
</tr>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion website/translated_docs/ja/concepts/agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ Dispatcherは、コンポーネントがエージェントにメッセージを

## 参考資料

* [pub\_sub](https://github.com/yewstack/yew/tree/master/examples/pub_sub)の例でコンポーネントがどのようにエージェントと通信させているかがわかります。
* [pub\_sub](https://github.com/yewstack/yew/tree/v0.17/examples/pub_sub)の例でコンポーネントがどのようにエージェントと通信させているかがわかります。
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ Rust/Wasm活動チームによって開発されているライブラリとCLI
Yewで<a href="https://github.com/yewstack/yew/blob/master/examples/build.sh">作る例</a>
</td>
<td style="text-align:left">
Yewで<a href="https://www.github.com/yewstack/yew/tree/master/yew-stdweb/examples">作る例</a>
Yewで<a href="https://www.github.com/yewstack/yew/tree/v0.17/yew-stdweb/examples">作る例</a>
</td>
</tr>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion website/translated_docs/zh-CN/concepts/agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ Agents 通过使用二进制码 bincode 序列化其消息来进行通信。因

## Further reading

* The [pub\_sub](https://github.com/yewstack/yew/tree/master/examples/pub_sub) example shows how components can use agents to communicate with each other.
* The [pub\_sub](https://github.com/yewstack/yew/tree/v0.17/examples/pub_sub) example shows how components can use agents to communicate with each other.

2 changes: 1 addition & 1 deletion website/translated_docs/zh-TW/concepts/agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ Agents 透過使用 [bincode](https://github.com/servo/bincode) 序列化他們

## 延伸閱讀

* [pub\_sub](https://github.com/yewstack/yew/tree/master/examples/pub_sub) 範例顯示了如何在 agnets 之間溝通。
* [pub\_sub](https://github.com/yewstack/yew/tree/v0.17/examples/pub_sub) 範例顯示了如何在 agnets 之間溝通。

6 changes: 3 additions & 3 deletions yewtil/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Yewtil
A utility crate for the [Yew](https://github.com/yewstack/yew) frontend web framework.

> This crate used to contain a domain specific language which made it possible to create components without use of the `html!` macro, but this has now been moved into a different crate ([`yew-dsl`](https://github.com/yewstack/yew/tree/master/yew-dsl)).
> This crate used to contain a domain specific language which made it possible to create components without use of the `html!` macro, but this has now been moved into a different crate ([`yew-dsl`](https://github.com/yewstack/yew/tree/v0.17/yew-dsl)).
## Purpose
To provide a place for utilities which are commonly used with Yew to reside without having to include them in the core Yew crate.
Expand All @@ -27,9 +27,9 @@ and traversal over linked shared pointers. <sup><sub>(This needs to be fuzz test
These experimental features are either not sufficiently vetted and may change significantly or be removed.

## Example Projects
There are [examples showing how to use every stable feature in this crate](https://github.com/yewstack/yew/tree/master/yewtil/examples).
There are [examples showing how to use every stable feature in this crate](https://github.com/yewstack/yew/tree/v0.17/yewtil/examples).

Check out the [Pure Components example](https://github.com/yewstack/yew/tree/master/yewtil/examples/pure_component) to see how Pure Components work.
Check out the [Pure Components example](https://github.com/yewstack/yew/tree/v0.17/yewtil/examples/pure_component) to see how Pure Components work.

## Example usages
#### neq_assign:
Expand Down

0 comments on commit 3caacac

Please sign in to comment.