diff --git a/bluer/CHANGELOG.md b/bluer/CHANGELOG.md index f28966f..b1d7630 100644 --- a/bluer/CHANGELOG.md +++ b/bluer/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to BlueR will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.17.2 - 2024-06-26 +### Changed +- warn when a returned handle is unused +- clarify that events of MonitorHandle must be consumed + ## 0.17.1 - 2024-03-13 ### Added - device: add battery_percentage method by badr diff --git a/bluer/Cargo.toml b/bluer/Cargo.toml index 6943adc..afaa651 100644 --- a/bluer/Cargo.toml +++ b/bluer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bluer" -version = "0.17.1" +version = "0.17.2" description = "BlueR: official Rust interface to the Linux Bluetooth protocol stack (BlueZ)" readme = "README.md" authors = [ @@ -61,7 +61,7 @@ strum = { version = "0.26", features = ["derive"] } num-traits = "0.2" num-derive = "0.4" libc = "0.2" -nix = { version = "0.27", default-features = false, features = ["ioctl"] } +nix = { version = "0.29", default-features = false, features = ["ioctl"] } custom_debug = { version = "0.6", optional = true } displaydoc = { version = "0.2", optional = true } log = "0.4"