diff --git a/CHANGELOG.md b/CHANGELOG.md index 9af9b94..6b5834b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## [0.6.0] +## [0.6.0]- 2024-03-07 - Implement Display and Debug traits for BLERemoteCharacteristic & BLERemoteService ([#66](https://github.com/taks/esp32-nimble/pull/66)) - Added `BLEAdvertising::on_complete` - Added `OnWriteArgs::notify::notify` ([#75](https::/github.com/taks/esp32-nimble/pull/75)) diff --git a/Cargo.toml b/Cargo.toml index f235789..d6b1e6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "esp32-nimble" -version = "0.5.1" +version = "0.6.0" authors = ["taks <857tn859@gmail.com>"] edition = "2021" resolver = "2" @@ -37,7 +37,7 @@ bstr = { version = "1.8.0", default-features = false } embassy-sync = { version = "0.5.0" } num_enum = { version = "0.7", default-features = false } once_cell = { version = "1.19.0", default-features = false } -uuid = { version = "1.2.2", default-features = false, features = ["macro-diagnostics"] } +uuid = { version = "1", default-features = false, features = ["macro-diagnostics"] } [dev-dependencies] esp-idf-sys = { version = "0.34", default-features = false, features = ["binstart", "alloc_handler"] }