From e13c0cb21ba789f308a308cec4b47e1beb239488 Mon Sep 17 00:00:00 2001 From: LIAUD Corentin Date: Fri, 7 Apr 2023 09:13:06 +0200 Subject: [PATCH] Releases 0.5.0 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 8 ++++---- 2 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..26cc16c --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [0.5.0] - 2023-04-07 + +- [Breaking] Commands previously using `serial` argument now takes `&Option` instead of `Option`. (#8) +- Adds `serial` argument for `host-feature` command. (#8) + +Thanks @jagenheim for contributing ! diff --git a/Cargo.toml b/Cargo.toml index 9bade20..7ed178f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT" name = "adb_client" readme = "README.md" repository = "https://github.com/cocool97/adb_client" -version = "0.4.1" +version = "0.5.0" [lib] name = "adb_client" @@ -17,11 +17,11 @@ name = "adb_cli" path = "examples/adb_cli.rs" [dependencies] -regex = { version = "1.5.5", features = ["perf", "std", "unicode"] } +regex = { version = "1.7.3", features = ["perf", "std", "unicode"] } termios = { version = "0.3.3" } -thiserror = { version = "1.0.31" } +thiserror = { version = "1.0.40" } ## Binary-only dependencies ## Marked as optional so that lib users do not depend on them [dev-dependencies] -clap = { version = "= 4.1.4", features = ["derive"] } +clap = { version = "= 4.2.1", features = ["derive"] }