Skip to content

Commit dfd7909

Browse files
committed
build: switch to (final) version 3.0.0 of openidconnect
1 parent 86b8c54 commit dfd7909

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yew-oauth2"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Jens Reimann <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -31,7 +31,7 @@ web-sys = { version = "0.3", features = [
3131
"Window",
3232
] }
3333

34-
openidconnect = { version = "3.0.0-alpha.1", optional = true }
34+
openidconnect = { version = "3.0", optional = true }
3535
yew-nested-router = { version = "0.2", optional = true }
3636

3737
[features]

README.md

-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ yew-oauth2 = { version = "0.6", features = ["router"] }
2020

2121
OpenID Connect requires an additional dependency and can be enabled using the feature `openid`.
2222

23-
Starting with version `0.6.0-alpha.1`, it is possible to use `openidconnect-rs` version 3, which is the first version
24-
supporting WebAssembly targets without patching. However, for the moment, only an alpha version of `openidconnect-rs` 3
25-
is released.
26-
2723
## Examples
2824

2925
A quick example how to use it (see below for more complete examples):

yew-oauth2-example/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ wasm-logger = "0.2"
1616
yew = { version = "0.20", features = ["csr"] }
1717
yew-nested-router = "0.2.0"
1818

19-
openidconnect = { version = "3.0.0-alpha.1", optional = true }
19+
openidconnect = { version = "3.0", optional = true }
2020

2121
[features]
2222
default = ["openid"]

yew-oauth2-redirect-example/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ wasm-logger = "0.2"
1515
yew = { version = "0.20", features = ["csr"] }
1616
yew-nested-router = "0.2.0"
1717

18-
openidconnect = { version = "3.0.0-alpha.1", optional = true }
18+
openidconnect = { version = "3.0", optional = true }
1919

2020
[features]
2121
default = ["openid"]

0 commit comments

Comments
 (0)