Skip to content

Commit

Permalink
fix: Fix missing include, update to 0.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
qdot committed Nov 19, 2023
1 parent 459f4cc commit 41bc777
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,9 @@
# 0.11.3 (2023-11-18)

## Bugfixes

- CoreBluetooth: Fix missing include

# 0.11.2 (2023-11-18)

## Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "btleplug"
version = "0.11.2"
version = "0.11.3"
authors = ["Nonpolynomial, LLC <kyle@nonpolynomial.com>"]
license = "MIT/Apache-2.0/BSD-3-Clause"
repository = "https://github.com/deviceplug/btleplug"
Expand Down
2 changes: 0 additions & 2 deletions src/corebluetooth/future.rs
@@ -1,5 +1,4 @@
use core::pin::Pin;
use log::debug;
use std::future::Future;
use std::sync::{Arc, Mutex};
use std::task::{Context, Poll, Waker};
Expand Down Expand Up @@ -108,7 +107,6 @@ impl<T> Future for BtlePlugFuture<T> {
let msg = waker_state.reply_msg.take().unwrap();
Poll::Ready(msg)
} else {
trace!("Waker set.");
waker_state.waker = Some(cx.waker().clone());
Poll::Pending
}
Expand Down

0 comments on commit 41bc777

Please sign in to comment.