Releases 0.5.0
This commit is contained in:
10
CHANGELOG.md
Normal file
10
CHANGELOG.md
Normal file
@@ -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<S: ToString>` instead of `Option<String>`. (#8)
|
||||
- Adds `serial` argument for `host-feature` command. (#8)
|
||||
|
||||
Thanks @jagenheim for contributing !
|
||||
@@ -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"] }
|
||||
|
||||
Reference in New Issue
Block a user