From a9d0b0692524435e60fc2982146e3b0a42ba03a9 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Fri, 20 May 2016 15:26:38 +0200 Subject: [PATCH] chore(version-up): v0.6.0 Comes with DiskStorage and new Flow !!! --- Cargo.toml | 2 +- changelog.md | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 490db85..a103df1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "yup-oauth2" -version = "0.5.6" +version = "0.6.0" authors = ["Sebastian Thiel "] repository = "https://github.com/Byron/yup-oauth2" description = "A partial oauth2 implementation, providing the 'device' authorization flow" diff --git a/changelog.md b/changelog.md index cfd218e..a625b01 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,24 @@ + +## v0.6.0 (2016-05-20) + + +#### Features + +* **flows:** Implement flow for installed apps ([77355888](https://github.com/Byron/yup-oauth2/commit/77355888f2d1f0db09b10d81a374d8d254dd13fb)) +* **storage:** Implement DiskTokenStorage ([2cb5250e](https://github.com/Byron/yup-oauth2/commit/2cb5250e72f53bc020cad298b5689dcc88e6347f)) + +#### Bug Fixes + +* **DiskTokenStorage:** make DiskTokenStorage::new() return a Result<> ([ae5e94bf](https://github.com/Byron/yup-oauth2/commit/ae5e94bf7b15318a15b2885fa0d4b5fded8bcadd)) +* **dependencies:** + * work with latest dependencies on nightly ([22bb255a](https://github.com/Byron/yup-oauth2/commit/22bb255a55e2a92e4b03c33d721ab122c6c5ae32)) + * hyper also broke us ([4e1d9bd7](https://github.com/Byron/yup-oauth2/commit/4e1d9bd75091583ff9d8f49e6e8cd46458677457)) + * use url = 0.5; the bump to 1.0 broke us ([95ecb5c3](https://github.com/Byron/yup-oauth2/commit/95ecb5c3887bd51367724da4e9c862aa1c3154a9), closes [#23](https://github.com/Byron/yup-oauth2/issues/23)) + * use url = 0.5; the bump to 1.0 broke us ([5c4e3188](https://github.com/Byron/yup-oauth2/commit/5c4e318842c809551242a804c97e8696e5e6eb5c), closes [#23](https://github.com/Byron/yup-oauth2/issues/23)) +* **installed:** Genericize token/auth URI ([9b31070e](https://github.com/Byron/yup-oauth2/commit/9b31070edbac3ba9e42dc08c81a48ec3fee8a728)) + + + ### v0.5.6 (2016-04-10)