diff --git a/CHANGELOG.md b/CHANGELOG.md index ee8ea6c..8bee95d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +0.10.0 +--- + +* **core** + - gap: fix ServiceDataElement.UUID comment +* **docs** + - add mention of support for rp2040-W to README + - Improve documentation of RSSI Fixes https://github.com/tinygo-org/bluetooth/issues/272 +* **hci** + - cyw43439: HCI implementation + - refactor to separate HCI transport implementation from interface to not always assume UART. + - update for cyw43439 HCI functionality +* **windows** + - Add Address field to Windows Device struct + - Winrt full support (#266) + - winrt-go: bump to latest + - assign char handle write event (#274) +* **test** + - add hci_uart based implementation to smoke tests + 0.9.0 --- diff --git a/version.go b/version.go index 21cfcaa..64bc5a2 100644 --- a/version.go +++ b/version.go @@ -2,4 +2,4 @@ package bluetooth // Version returns a user-readable string showing the version of the bluetooth package for support purposes. // Update this value before release of new version of software. -const Version = "0.9.0" +const Version = "0.10.0"