From 045fcbe3abb14eb9256e44965cff9227b9469fe2 Mon Sep 17 00:00:00 2001 From: Henry Zimmerman Date: Sat, 14 Mar 2020 07:28:29 -0400 Subject: [PATCH] release v0.11.0 (#256) --- CHANGELOG.md | 15 ++++++++++----- Cargo.toml | 8 ++++---- crates/yew_router_macro/Cargo.toml | 6 +++--- crates/yew_router_route_parser/Cargo.toml | 2 +- examples/guide/Cargo.toml | 2 +- examples/minimal/Cargo.toml | 2 +- examples/router_component/Cargo.toml | 2 +- 7 files changed, 21 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9600abd..dedfa9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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* diff --git a/Cargo.toml b/Cargo.toml index e6a942c..ebabae4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew-router" -version = "0.10.0" +version = "0.11.0" authors = ["Henry Zimmerman ", "Sascha Grunert "] edition = "2018" license = "MIT/Apache-2.0" @@ -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" diff --git a/crates/yew_router_macro/Cargo.toml b/crates/yew_router_macro/Cargo.toml index a018513..4de7853 100644 --- a/crates/yew_router_macro/Cargo.toml +++ b/crates/yew_router_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew-router-macro" -version = "0.10.0" +version = "0.11.0" authors = ["Henry Zimmerman "] edition = "2018" license = "MIT/Apache-2.0" @@ -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"} \ No newline at end of file +yew-router = {path = "../..", version = "0.11.0"} # This should probably be removed, it makes the deploy process much more annoying. \ No newline at end of file diff --git a/crates/yew_router_route_parser/Cargo.toml b/crates/yew_router_route_parser/Cargo.toml index d5a39b1..355cbe5 100644 --- a/crates/yew_router_route_parser/Cargo.toml +++ b/crates/yew_router_route_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew-router-route-parser" -version = "0.10.0" +version = "0.11.0" authors = ["Henry Zimmerman "] edition = "2018" license = "MIT/Apache-2.0" diff --git a/examples/guide/Cargo.toml b/examples/guide/Cargo.toml index f1d74d3..caeae8a 100644 --- a/examples/guide/Cargo.toml +++ b/examples/guide/Cargo.toml @@ -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" diff --git a/examples/minimal/Cargo.toml b/examples/minimal/Cargo.toml index 2bab334..5f14988 100644 --- a/examples/minimal/Cargo.toml +++ b/examples/minimal/Cargo.toml @@ -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" diff --git a/examples/router_component/Cargo.toml b/examples/router_component/Cargo.toml index c9b17ca..a99a903 100644 --- a/examples/router_component/Cargo.toml +++ b/examples/router_component/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Henry Zimmerman "] 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"