From e965d07a0dcd5da3961b2f763d8b45b88f118d7f Mon Sep 17 00:00:00 2001 From: Adrian Kumpf <8999358+adriankumpf@users.noreply.github.com> Date: Mon, 30 Dec 2024 02:20:07 +0100 Subject: [PATCH] Release v0.10.0 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 15 ++++++++++----- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4932829..d88da07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.10.0] - 2024-12-30 + +- Upgrade wry to 0.47 +- Build binary for `aarch64-apple-darwin` + ## [0.9.0] - 2023-11-25 - Require `libxdo` on Linux @@ -87,6 +92,7 @@ ## [0.1.0] - 2021-09-17 +[0.10.0]: https://github.com/adriankumpf/tesla_auth/compare/v0.9.0...v0.10.0 [0.9.0]: https://github.com/adriankumpf/tesla_auth/compare/v0.8.0...v0.9.0 [0.8.0]: https://github.com/adriankumpf/tesla_auth/compare/v0.7.0...v0.8.0 [0.7.0]: https://github.com/adriankumpf/tesla_auth/compare/v0.6.3...v0.7.0 diff --git a/Cargo.lock b/Cargo.lock index 5af77d2..31fa55a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3020,7 +3020,7 @@ dependencies = [ [[package]] name = "tesla_auth" -version = "0.9.0" +version = "0.10.0" dependencies = [ "anyhow", "argh", diff --git a/Cargo.toml b/Cargo.toml index 434e0ff..fdca5b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tesla_auth" -version = "0.9.0" +version = "0.10.0" description = "Tesla token generator" homepage = "https://github.com/adriankumpf/tesla_auth" repository = "https://github.com/adriankumpf/tesla_auth" @@ -18,11 +18,16 @@ argh = "0.1.13" log = "0.4.22" muda = "0.15.3" oauth2 = "4.4.2" -reqwest = { version = "0.12.11", default-features = false, features = ["json", "rustls-tls"] } +reqwest = { version = "0.12.11", default-features = false, features = [ + "json", + "rustls-tls", +] } serde = { version = "1.0.217", default-features = false, features = ["derive"] } serde_json = "1.0.134" -simple_logger = { version = "5.0.0", default-features = false, features = ["stderr"] } -tao = { version = "0.31", default-features = false, features = [ "rwh_06" ] } +simple_logger = { version = "5.0.0", default-features = false, features = [ + "stderr", +] } +tao = { version = "0.31", default-features = false, features = ["rwh_06"] } wry = { version = "0.47.2", features = ["devtools"] } [build-dependencies] @@ -30,7 +35,7 @@ static_vcruntime = "2.0.0" [profile.release] strip = "debuginfo" -opt-level = "z" # Optimize for size. +opt-level = "z" # Optimize for size. lto = true codegen-units = 1