From ba6345764682d917a438c55e86fbb2bf9d6a9b33 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Mon, 22 May 2023 18:26:07 +0200 Subject: [PATCH] release: preparing for v0.7.0 release Signed-off-by: deadprogram --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++++ version.go | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1438fac6..a7a612c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,38 @@ +0.7.0 +--- + +* **build** + - switch to ghcr.io for docker container + - update to actions/checkout@v3 + - work around for CVE-2022-24765 +* **core** + - gap: Set and SetRandom methods should have a pointer receiver + - mtu-{darwin,linux,windows,sd}: add get mtu function + - remove Addresser + - update uuid generation +* **docs** + - CONTRIBUTING: add note on new APIs + - correct badge link for GH actions + - README: add note on macOS Big Sur and iTerm2 +* **linux** + - do not randomize order of returned discovered services/chars + - fix characteristic scan order + - implement disconnect handling +* **macos** + - implement disconnect handling + - fix characteristic scan order +* **examples** + - add examples/stop-advertisement +* **nordic semi** + - nrf528xx: handle BLE_GAP_EVT_PHY_UPDATE_REQUEST and explicitly ignore some other events + - softdevice: avoid a heap allocation in the SoftDevice event handler +* **windows** + - Added Indicate support to Windows driver + - gap/windows: Scan should set scanning mode to active to match other platforms + - support empty manufacturer data + - winrt-go: bump to latest + + 0.6.0 --- * **core** diff --git a/version.go b/version.go index 4831e3f9..2776af7a 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.6.0" +const Version = "0.7.0"