Skip to content

Commit

Permalink
Release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adriankumpf committed Dec 30, 2024
1 parent b400ece commit e965d07
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 10 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -18,19 +18,24 @@ 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]
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

Expand Down

0 comments on commit e965d07

Please sign in to comment.