diff --git a/CHANGELOG.md b/CHANGELOG.md index a7a612c0..d9419b32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +0.8.0 +--- + +* **build** + - remove CGo dependencies for Windows cross-compiler tests + - add Windows to GH actions build jobs + - add macOS 12 to GH actions build jobs +* **core** + - go 1.18 and remove old-style build tags + - Noescape workaround +* **docs** + - update README to remove CGo requirement for Windows + - add documentation to heartrate-monitor +* **linux** + - Added option to add ManufacturerData to Advertisement +* **macos** + - enable support for duplicate chars by moving from a map to a slice +* **examples** + - Include WriteWithoutResponse permission, for examples, where Write exists +* **nordic semi** + - softdevice: added manufacturer data support + - softdevice: test creation of raw BLE advertisement packets +* **windows** + - update github.com/saltosystems/winrt-go to no longer require CGo + + 0.7.0 --- diff --git a/version.go b/version.go index 2776af7a..6513288c 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.7.0" +const Version = "0.8.0"