From a60b2bc35cf460fb0e7814e5edc1ce9ef4718a8a Mon Sep 17 00:00:00 2001 From: Alexander Korolev Date: Mon, 28 Nov 2022 23:17:21 +0100 Subject: [PATCH] release 0.11.0 --- Cargo.toml | 2 +- README.md | 6 +++--- src/lib.rs | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0027455..bd08ed9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openid" -version = "0.10.1" +version = "0.11.0" authors = ["Alexander Korolev "] edition = "2021" categories = ["authentication"] diff --git a/README.md b/README.md index ef06e5e..a21a859 100644 --- a/README.md +++ b/README.md @@ -22,14 +22,14 @@ Add dependency to Cargo.toml: ```toml [dependencies] -openid = "0.10" +openid = "0.11" ``` By default it uses native tls, if you want to use `rustls`: ```toml [dependencies] -openid = { version = "0.10", default-features = false, features = ["rustls"] } +openid = { version = "0.11", default-features = false, features = ["rustls"] } ``` ### Use case: [Warp](https://crates.io/crates/warp) web server with [JHipster](https://www.jhipster.tech/) generated frontend and [Google OpenID Connect](https://developers.google.com/identity/protocols/OpenIDConnect) @@ -49,7 +49,7 @@ edition = '2018' anyhow = "1.0" cookie = "0.14" log = "0.4" -openid = "0.10" +openid = "0.11" pretty_env_logger = "0.4" reqwest = "0.11" serde = { version = "1", features = [ "derive" ] } diff --git a/src/lib.rs b/src/lib.rs index 1a54707..d4f7b29 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -23,14 +23,14 @@ Add dependency to Cargo.toml: ```toml [dependencies] -openid = "0.10" +openid = "0.11" ``` By default it uses native tls, if you want to use `rustls`: ```toml [dependencies] -openid = { version = "0.10", default-features = false, features = ["rustls"] } +openid = { version = "0.11", default-features = false, features = ["rustls"] } ``` ### Use case: [Warp](https://crates.io/crates/warp) web server with [JHipster](https://www.jhipster.tech/) generated frontend and [Google OpenID Connect](https://developers.google.com/identity/protocols/OpenIDConnect) @@ -50,7 +50,7 @@ edition = '2018' anyhow = "1.0" cookie = "0.14" log = "0.4" -openid = "0.10" +openid = "0.11" pretty_env_logger = "0.4" reqwest = "0.11" serde = { version = "1", features = [ "derive" ] }