diff --git a/CHANGELOG.md b/CHANGELOG.md index c1a0f94..65eabe3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +0.2.0 +--- +* **core** + - gattc: DeviceCharacteristic Read() implementation + - gap: add Disconnect() to Driver + - gap: change signature for Addresser interface Set() function to accept string and then parse it as needed +* **linux** + - update to latest version of go-bluetooth package for Linux +* **macos** + - handle case when adapter enable sends notification before event delegate is set + - Document async Disconnect behaviour +* **examples** + - discover should only wait on startup on baremetal, since macOS does not like that + 0.1.0 --- * **linux** diff --git a/version.go b/version.go index ceab72a..70a24af 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.1.0" +const Version = "0.2.0"