diff --git a/Cargo.lock b/Cargo.lock index 896e44b8..31ab20b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -55,7 +55,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "bluez-async" -version = "0.7.2" +version = "0.8.0" dependencies = [ "bitflags 2.6.0", "bluez-generated", @@ -75,7 +75,7 @@ dependencies = [ [[package]] name = "bluez-generated" -version = "0.3.0" +version = "0.4.0" dependencies = [ "dbus", ] diff --git a/bluez-async/CHANGELOG.md b/bluez-async/CHANGELOG.md index fe8a1f8d..096012ab 100644 --- a/bluez-async/CHANGELOG.md +++ b/bluez-async/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.8.0 + +### Breaking changes + +- Added `mtu` to `CharacteristicInfo`. + +### New features + +- Implemented `TryFrom<&[String]>` for `CharacteristicFlags`. + ## 0.7.2 ### Bugfixes diff --git a/bluez-async/Cargo.toml b/bluez-async/Cargo.toml index e03bf1cc..9fe022e9 100644 --- a/bluez-async/Cargo.toml +++ b/bluez-async/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bluez-async" -version = "0.7.2" +version = "0.8.0" authors = [ "Andrew Walbran ", "David Laban ", @@ -14,7 +14,7 @@ categories = ["api-bindings", "hardware-support", "os::linux-apis"] [dependencies] bitflags = "2.6.0" -bluez-generated = { version = "0.3.0", path = "../bluez-generated" } +bluez-generated = { version = "0.4.0", path = "../bluez-generated" } dbus = { version = "0.9.7", features = ["futures"] } dbus-tokio = "0.7.6" futures = "0.3.31" diff --git a/bluez-generated/Cargo.toml b/bluez-generated/Cargo.toml index b0fe02a6..db92ab04 100644 --- a/bluez-generated/Cargo.toml +++ b/bluez-generated/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "bluez-generated" -version = "0.3.0" -authors = ["Andrew Walbran ", "David Laban "] +version = "0.4.0" +authors = [ + "Andrew Walbran ", + "David Laban ", +] edition = "2018" license = "MIT OR Apache-2.0" description = "Generated async D-Bus bindings for talking to BlueZ on Linux."