Skip to content

Commit 5bcf36d

Browse files
authored
Release v0.13 of the router (#1218)
* Release v0.13 of the router * bump versions in router macro Cargo.toml
1 parent f3c8453 commit 5bcf36d

File tree

4 files changed

+18
-15
lines changed

4 files changed

+18
-15
lines changed

yew-router-macro/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yew-router-macro"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = ["Henry Zimmerman <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"
@@ -13,8 +13,8 @@ proc-macro = true
1313
[dependencies]
1414
syn = "1.0.2"
1515
quote = "1.0.1"
16-
yew-router-route-parser = { version = "0.12.0", path = "../yew-router-route-parser"}
16+
yew-router-route-parser = { version = "0.13.0", path = "../yew-router-route-parser"}
1717
proc-macro2 = "1.0.1"
1818

1919
[dev-dependencies]
20-
yew-router = { path = "../yew-router" } # This should probably be removed, it makes the deploy process much more annoying.
20+
yew-router = { version = "0.13.0", path = "../yew-router" } # This should probably be removed, it makes the deploy process much more annoying.

yew-router-route-parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yew-router-route-parser"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = ["Henry Zimmerman <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"

yew-router/CHANGELOG.md

+10-7
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,22 @@
1313
1414
END TEMPLATE-->
1515

16-
17-
## **0.13.0** *(TBD)*
16+
## **0.14.0** *(TBD)*
1817

1918
- #### ⚡️ Features
20-
- None
19+
- None
2120
- #### 🛠 Fixes
22-
- None
21+
- None
2322
- #### 🚨 Breaking changes
24-
- None
25-
23+
- None
2624

27-
## **0.12.1** *2020-4-26*
2825

26+
## **0.13.0** *2020-5-12*
27+
28+
- #### 🚨 Breaking changes
29+
- Bump `yew` version to `0.16`.
30+
31+
## **0.12.1** *2020-4-26*
2932
- #### 🛠 Fixes
3033
- Fix infinite rerender bug in 'Router' component. (Thanks @dancespiele)
3134

yew-router/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yew-router"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
authors = ["Henry Zimmerman <[email protected]>", "Sascha Grunert <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"
@@ -31,9 +31,9 @@ web_sys = [
3131
]
3232

3333
[dependencies]
34-
yew = { version = "0.16.1", path = "../yew", features = ["services", "agent"], default-features= false, optional = true }
35-
yew-router-macro = { version = "0.12.0", path = "../yew-router-macro" }
36-
yew-router-route-parser = { version = "0.12.0", path = "../yew-router-route-parser" }
34+
yew = { version = "0.16.0", path = "../yew", features = ["services", "agent"], default-features= false, optional = true }
35+
yew-router-macro = { version = "0.13.0", path = "../yew-router-macro" }
36+
yew-router-route-parser = { version = "0.13.0", path = "../yew-router-route-parser" }
3737

3838
cfg-if = "0.1.10"
3939
cfg-match = "0.2"

0 commit comments

Comments
 (0)