From 58c19fadfa5499410f9f731df76746e950178a03 Mon Sep 17 00:00:00 2001 From: Sorah Fukumori Date: Thu, 9 Jan 2025 06:33:01 +0900 Subject: [PATCH] releng 0.2.0 --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 090fc36..2535c8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.2.0 + +- Fix crash on macOS https://github.com/sorah/mairu/pull/14 +- Support generic OAuth 2.0 Device Authorization Grant (RFC 8628) https://github.com/sorah/mairu/pull/15 +- Support generic token refresh using refresh_token grant type https://github.com/sorah/mairu/pull/16 +- AWS SSO: Support OAuth 2.0 Authorization Code Grant https://github.com/sorah/mairu/pull/17 https://github.com/sorah/mairu/pull/18 + ## 0.1.0 - Initial release diff --git a/Cargo.lock b/Cargo.lock index 275f353..007ce97 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1432,7 +1432,7 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" [[package]] name = "mairu" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-recursion", diff --git a/Cargo.toml b/Cargo.toml index bae12ea..5c1cc2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mairu" -version = "0.1.0" +version = "0.2.0" authors = ["Sorah Fukumori "] description = "on-memory AWS credentials agent and executor" keywords = ["aws", "security", "cli"]