Skip to content

Commit

Permalink
New release
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Oct 19, 2023
1 parent 1e69116 commit c7b4b22
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ All notable changes to this project 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.47.1] - 2023-10-18
* Compatibility with `embedded-svc` 0.26.1

## [0.47.0] - 2023-10-17
* MSRV raised to 1.71
* New `experimental` module - `bt` - providing Bluetooth support based on the ESP-IDF Bluedroid implementation
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp-idf-svc"
version = "0.47.0"
version = "0.47.1"
authors = ["Ivan Markov <[email protected]>"]
edition = "2018"
resolver = "2"
Expand Down Expand Up @@ -44,7 +44,7 @@ num_enum = { version = "0.7", default-features = false }
enumset = { version = "1", default-features = false }
log = { version = "0.4", default-features = false }
uncased = "0.9.7"
embedded-svc = { version = "0.26", default-features = false }
embedded-svc = { version = "0.26.1", default-features = false }
esp-idf-hal = { version = "0.42", default-features = false, features = ["esp-idf-sys"] }
embassy-sync = { version = "0.3", optional = true }
embassy-time = { version = "0.1.3", optional = true, features = ["tick-hz-1_000_000"] }
Expand Down
11 changes: 8 additions & 3 deletions src/eventloop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -999,8 +999,12 @@ mod async_wait {
E: super::EspTypedEventDeserializer<E> + Send,
T: super::EspEventLoopType,
{
subscription:
AsyncSubscription<crate::private::mutex::RawCondvar, E, super::EspSubscription<'a, T>>,
subscription: AsyncSubscription<
crate::private::mutex::RawCondvar,
E,
super::EspSubscription<'a, T>,
EspError,
>,
timer: AsyncTimer<EspTimer<'a>>,
_event: PhantomData<fn() -> E>,
}
Expand Down Expand Up @@ -1063,6 +1067,7 @@ mod async_wait {
crate::private::mutex::RawCondvar,
EE,
super::EspSubscription<'s, TT>,
EspError,
>,
mut matcher: F,
) -> Result<(), EspError>
Expand All @@ -1071,7 +1076,7 @@ mod async_wait {
TT: super::EspEventLoopType,
{
while matcher()? {
subscription.recv().await;
subscription.recv().await?;
}

Ok(())
Expand Down

0 comments on commit c7b4b22

Please sign in to comment.