diff --git a/CHANGELOG.md b/CHANGELOG.md index 6eabef4e..1dbc0144 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# 0.11.7 (2024-12-21) + +## Features + +- Deserialize BDAddr from non-borrowed strings + - Thanks icewind1991, ekuinox! +- Add support for Extended Advertising on Android + - Thanks Jakouf! + +## Bugfixes + +- Call GetDefaultAdapter() instead of GetAdapter() on Android +- Use BluetoothCacheMode::Uncached for services fetching on windows + - This *may* cause issues with connection times, we'll see how it works out +- Characteristics with duplicate UUIDs (but differing handles) no longer overwrite each other + - Thanks blackspherefollower! +- CoreBluetooth now fulfills all open characteristic futures on disconnect + - Thanks szymonlesisz! + # 0.11.6 (2024-10-06) ## Features diff --git a/Cargo.toml b/Cargo.toml index 07982aea..e3c5fb92 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "btleplug" -version = "0.11.6" +version = "0.11.7" authors = ["Nonpolynomial, LLC "] license = "MIT/Apache-2.0/BSD-3-Clause" repository = "https://github.com/deviceplug/btleplug"