This repository has been archived by the owner on Jul 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
09370d5
commit 045fcbe
Showing
7 changed files
with
21 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|