Releases 0.5.0

This commit is contained in:
LIAUD Corentin
2023-04-07 09:13:06 +02:00
parent 7c6e618929
commit e13c0cb21b
2 changed files with 14 additions and 4 deletions

10
CHANGELOG.md Normal file
View 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 !

View File

@@ -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"] }