release: prepare for v0.3.0

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram 2021-03-06 14:05:08 +01:00
parent 172569b0a1
commit 28f9f4e69e
4 changed files with 18 additions and 2 deletions

@ -1,3 +1,17 @@
0.3.0
---
* **core**
- generate standard service and characteristic UUIDs from Nordic Semiconductor bluetooth numbers database
* **linux**
- downgrade to older version of go-bluetooth that appears to work correctly with BlueZ 5.50
* **macos**
- properly handle 16-bit UUIDs for service and characteristics in the unique format used by macOS
* **docs**
- add a few details on some newly supported boards
* **examples**
- use standard service and characteristic UUIDs
- correct heart rate monitor data format
0.2.0
---
* **core**

2
go.mod

@ -15,5 +15,5 @@ require (
golang.org/x/tools v0.0.0-20200925191224-5d1fdd8fa346 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
tinygo.org/x/drivers v0.14.0
tinygo.org/x/drivers v0.15.1
)

2
go.sum

@ -83,3 +83,5 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C
tinygo.org/x/drivers v0.13.0 h1:ohzhFiPb/5dcRop3X+Gdvsr6uswmnpfMX9KsAMtgtTM=
tinygo.org/x/drivers v0.13.0/go.mod h1:mShi1lpVtJFpApkZgwyrzDKHToeGfWIuB08utyHxZ7g=
tinygo.org/x/drivers v0.14.0/go.mod h1:uT2svMq3EpBZpKkGO+NQHjxjGf1f42ra4OnMMwQL2aI=
tinygo.org/x/drivers v0.15.1 h1:fS85Q6CVn1qcSF+n0JN61a5AULrbenjH5XIoYnQjOO4=
tinygo.org/x/drivers v0.15.1/go.mod h1:uT2svMq3EpBZpKkGO+NQHjxjGf1f42ra4OnMMwQL2aI=

@ -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.2.0"
const Version = "0.3.0"