Skip to content

Commit

Permalink
Release v0.13 of the router (#1218)
Browse files Browse the repository at this point in the history
* Release v0.13 of the router

* bump versions in router macro Cargo.toml
  • Loading branch information
hgzimmerman authored Jun 2, 2020
1 parent f3c8453 commit 5bcf36d
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 15 deletions.
6 changes: 3 additions & 3 deletions yew-router-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yew-router-macro"
version = "0.12.0"
version = "0.13.0"
authors = ["Henry Zimmerman <zimhen7@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand All @@ -13,8 +13,8 @@ proc-macro = true
[dependencies]
syn = "1.0.2"
quote = "1.0.1"
yew-router-route-parser = { version = "0.12.0", path = "../yew-router-route-parser"}
yew-router-route-parser = { version = "0.13.0", path = "../yew-router-route-parser"}
proc-macro2 = "1.0.1"

[dev-dependencies]
yew-router = { path = "../yew-router" } # This should probably be removed, it makes the deploy process much more annoying.
yew-router = { version = "0.13.0", path = "../yew-router" } # This should probably be removed, it makes the deploy process much more annoying.
2 changes: 1 addition & 1 deletion yew-router-route-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yew-router-route-parser"
version = "0.12.0"
version = "0.13.0"
authors = ["Henry Zimmerman <zimhen7@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down
17 changes: 10 additions & 7 deletions yew-router/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,22 @@
END TEMPLATE-->


## **0.13.0** *(TBD)*
## **0.14.0** *(TBD)*

- #### ⚡️ Features
- None
- None
- #### 🛠 Fixes
- None
- None
- #### 🚨 Breaking changes
- None

- None

## **0.12.1** *2020-4-26*

## **0.13.0** *2020-5-12*

- #### 🚨 Breaking changes
- Bump `yew` version to `0.16`.

## **0.12.1** *2020-4-26*
- #### 🛠 Fixes
- Fix infinite rerender bug in 'Router' component. (Thanks @dancespiele)

Expand Down
8 changes: 4 additions & 4 deletions yew-router/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yew-router"
version = "0.12.1"
version = "0.13.0"
authors = ["Henry Zimmerman <zimhen7@gmail.com>", "Sascha Grunert <mail@saschagrunert.de>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down Expand Up @@ -31,9 +31,9 @@ web_sys = [
]

[dependencies]
yew = { version = "0.16.1", path = "../yew", features = ["services", "agent"], default-features= false, optional = true }
yew-router-macro = { version = "0.12.0", path = "../yew-router-macro" }
yew-router-route-parser = { version = "0.12.0", path = "../yew-router-route-parser" }
yew = { version = "0.16.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" }

cfg-if = "0.1.10"
cfg-match = "0.2"
Expand Down

0 comments on commit 5bcf36d

Please sign in to comment.