diff --git a/CHANGELOG.md b/CHANGELOG.md index 06cd7ad5..1438fac6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +0.6.0 +--- +* **core** + - unify UUID16 creation for all platforms + - Improve UUID (#107) + - gap: stop advertising + - advertising: add manufacturer data field to advertisement payload +* **linux** + - gap: workaround for https://github.com/muka/go-bluetooth/issues/163 + - update to latest muka/go-bluetooth +* **windows** + - add characteristic read, write and notify operations + - add characteristic discovery + - add service discovery + - add device connection and disconnection + - add winrt-go dependency and remove manually generated code + - disable cache when reading characteristics +* **macos** + - update to tinygo-org fork of cbgo v0.0.4 + - use the same UUID format as expected by other standard +* **docs** + - update README with info on Windows support +* **build** + - add Github Action based CI build (#108) + + 0.5.0 --- * **core** diff --git a/version.go b/version.go index fbdf1f0b..4831e3f9 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.5.0" +const Version = "0.6.0"