Release v0.14 for yew router (#1357)

This commit is contained in:
Henry Zimmerman 2020-06-30 10:55:45 -04:00 committed by GitHub
parent 9c84106601
commit cab176dd1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 24 additions and 13 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "yew-router-macro"
version = "0.13.0"
version = "0.14.0"
authors = ["Henry Zimmerman <zimhen7@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
@ -13,8 +13,8 @@ proc-macro = true
[dependencies]
syn = "1.0.2"
quote = "1.0.1"
yew-router-route-parser = { version = "0.13.0", path = "../yew-router-route-parser"}
yew-router-route-parser = { version = "0.14.0", path = "../yew-router-route-parser"}
proc-macro2 = "1.0.1"
[dev-dependencies]
yew-router = { version = "0.13.0", path = "../yew-router" } # This should probably be removed, it makes the deploy process much more annoying.
yew-router = { version = "0.14.0", path = "../yew-router" } # This should probably be removed, it makes the deploy process much more annoying.

View File

@ -1,6 +1,6 @@
[package]
name = "yew-router-route-parser"
version = "0.13.0"
version = "0.14.0"
authors = ["Henry Zimmerman <zimhen7@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"

View File

@ -13,7 +13,17 @@
END TEMPLATE-->
## ✨ **0.14.0** *(TBD)*
## ✨ **0.15.0** *(TBD)*
- #### ⚡️ Features
- None
- #### 🛠 Fixes
- None
- #### 🚨 Breaking changes
- None
## ✨ **0.14.0** *2020-6-30*
- #### ⚡️ Features
- None
@ -21,7 +31,8 @@ END TEMPLATE-->
- None
- #### 🚨 Breaking changes
- The `unit_state` module has been removed.
- Bump `yew` version to `0.17`.
## ✨ **0.13.0** *2020-5-12*

View File

@ -1,6 +1,6 @@
[package]
name = "yew-router"
version = "0.13.0"
version = "0.14.0"
authors = ["Henry Zimmerman <zimhen7@gmail.com>", "Sascha Grunert <mail@saschagrunert.de>"]
edition = "2018"
license = "MIT/Apache-2.0"
@ -32,8 +32,8 @@ web_sys = [
[dependencies]
yew = { version = "0.17.0", path = "../yew", features = ["services", "agent"], default-features= false, optional = true }
yew-router-macro = { version = "0.13.0", path = "../yew-router-macro" }
yew-router-route-parser = { version = "0.13.0", path = "../yew-router-route-parser" }
yew-router-macro = { version = "0.14.0", path = "../yew-router-macro" }
yew-router-route-parser = { version = "0.14.0", path = "../yew-router-route-parser" }
cfg-if = "0.1.10"
cfg-match = "0.2"

View File

@ -53,7 +53,7 @@ Look at https://webpack.js.org/configuration/dev-server/#devserverhistoryapifall
You can use the released version by adding these to your dependencies.
```toml
[dependencies]
yew-router = "0.13.0"
yew-router = "0.14.0"
yew = "0.17.0"
```

View File

@ -37,9 +37,9 @@ impl Component for AModel {
<div>
<RouterButton<AppRoute>
route=AppRoute::A(AllowMissing(Some(ARoute)))
/>
// {"Go to a/c"}
// </RouterButton<AppRoute>>
>
{"Go to a/c"}
</RouterButton<AppRoute>>
</div>
<div>
{