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

Commit

Permalink
release v0.11.0 (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
hgzimmerman authored Mar 14, 2020
1 parent 09370d5 commit 045fcbe
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 16 deletions.
15 changes: 10 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,20 @@
END TEMPLATE-->


## **0.11.0** *(TBD)*
## **0.12.0** *(TBD)*

- #### ⚡️ Features
- WebSys support (coming)
- x
- #### 🛠 Fixes
- Sample
- x
- #### 🚨 Breaking changes
- Sample
- x

## **0.11.0** *2020-3-14*

- #### 🛠 Fixes
- Fixed docs.rs document generation [[254](https://github.com/yewstack/yew_router/pull/254)] (Thanks @jetli)
- Fixed clippy for web_sys target [[249](https://github.com/yewstack/yew_router/pull/249)] (Thanks @jetli)


## **0.10.0** *2020-3-2*
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yew-router"
version = "0.10.0"
version = "0.11.0"
authors = ["Henry Zimmerman <[email protected]>", "Sascha Grunert <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down Expand Up @@ -40,10 +40,10 @@ web_sys = [
[dependencies]
log = "0.4.8"
serde = { version = "1.0.104", features = ["derive"] }
yew = { version = "0.13.0", features = ["services", "agent"], optional = true }
yew = { version = "0.14.0", features = ["services", "agent"], optional = true }
#yew = {git = "https://github.com/yewstack/yew", branch = "web-sys", optional = true, features = ["services", "agent"]}
yew-router-route-parser = {path = "crates/yew_router_route_parser", version = "0.10.0"}
yew-router-macro = {path = "crates/yew_router_macro", version = "0.10.0"}
yew-router-route-parser = {path = "crates/yew_router_route_parser", version = "0.11.0"}
yew-router-macro = {path = "crates/yew_router_macro", version = "0.11.0"}
nom = "5.1.1"
serde_json = "1.0.48"
cfg-if = "0.1.10"
Expand Down
6 changes: 3 additions & 3 deletions crates/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.10.0"
version = "0.11.0"
authors = ["Henry Zimmerman <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand All @@ -14,8 +14,8 @@ proc-macro = true
[dependencies]
syn = "1.0.2"
quote = "1.0.1"
yew-router-route-parser = {path = "../yew_router_route_parser", version = "0.10.0"}
yew-router-route-parser = {path = "../yew_router_route_parser", version = "0.11.0"}
proc-macro2 = "1.0.1"

[dev-dependencies]
yew-router = {path = "../..", version = "0.10.0"}
yew-router = {path = "../..", version = "0.11.0"} # This should probably be removed, it makes the deploy process much more annoying.
2 changes: 1 addition & 1 deletion crates/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.10.0"
version = "0.11.0"
authors = ["Henry Zimmerman <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/guide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
yew = {version = "0.13.0", features = ["services", "agent", "std_web"]}
yew = {version = "0.14.0", features = ["services", "agent", "std_web"]}
#yew = {git = "https://github.com/yewstack/yew", branch = "web-sys", features = ["std_web"]}
yew-router = {path = "../../", features = ["std_web"]}
#web_logger = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion examples/minimal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
yew = {version="0.13.0", features = ["std_web"]}
yew = {version="0.14.0", features = ["std_web"]}
#yew = {git = "https://github.com/yewstack/yew", branch = "web-sys", features = ["std_web"]}
yew-router = {path = "../../", features = ["std_web"]}
web_logger = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion examples/router_component/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Henry Zimmerman <[email protected]>"]
edition="2018"

[dependencies]
yew = {version="0.13.0", features = ["std_web"]}
yew = {version="0.14.0", features = ["std_web"]}
#yew = {git = "https://github.com/yewstack/yew", branch = "web-sys", features = ["std_web"]}
yew-router = {path = "../../", features = ["std_web"]}
web_logger = "0.2"
Expand Down

0 comments on commit 045fcbe

Please sign in to comment.