diff --git a/CHANGELOG.md b/CHANGELOG.md index f0fa1a8..25a4616 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.3.0] - 2021-11-01 + +- Fetch the short-lived SSO tokens by default +- Add flag (`-o`, `--owner-api-token`) for enabling SSO token exchange to long-lived Owner API tokens +- Log URL changes + ## [0.2.0] - 2021-09-17 - Render tokens an callback page @@ -14,6 +20,7 @@ ## [0.1.0] - 2021-09-17 +[0.3.0]: https://github.com/adriankumpf/tesla_auth/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/adriankumpf/tesla_auth/compare/v0.1.1...v0.2.0 [0.1.1]: https://github.com/adriankumpf/tesla_auth/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/adriankumpf/tesla_auth/compare/bd52d8b...v0.1.0 diff --git a/Cargo.toml b/Cargo.toml index e98da94..01e7aab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tesla_auth" -version = "0.1.0" +version = "0.3.0" description = "Tesla token generator" homepage = "https://github.com/adriankumpf/tesla_auth" repository = "https://github.com/adriankumpf/tesla_auth" diff --git a/README.md b/README.md index 54ede71..164968b 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,13 @@ Multi-factor authentication (MFA) and Captcha are supported. ```plain ❯ tesla_auth --help -Usage: tesla_auth [-d] +Usage: tesla_auth [-o] [-d] Tesla API tokens generator Options: + -o, --owner-api-token + exchange SSO access token for long-lived Owner API token -d, --debug print debug output --help display usage information ```