Skip to content

Commit 28f9f4e

Browse files
committed
release: prepare for v0.3.0
Signed-off-by: deadprogram <[email protected]>
1 parent 172569b commit 28f9f4e

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
0.3.0
2+
---
3+
* **core**
4+
- generate standard service and characteristic UUIDs from Nordic Semiconductor bluetooth numbers database
5+
* **linux**
6+
- downgrade to older version of go-bluetooth that appears to work correctly with BlueZ 5.50
7+
* **macos**
8+
- properly handle 16-bit UUIDs for service and characteristics in the unique format used by macOS
9+
* **docs**
10+
- add a few details on some newly supported boards
11+
* **examples**
12+
- use standard service and characteristic UUIDs
13+
- correct heart rate monitor data format
14+
115
0.2.0
216
---
317
* **core**

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ require (
1515
golang.org/x/tools v0.0.0-20200925191224-5d1fdd8fa346 // indirect
1616
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
1717
gopkg.in/yaml.v2 v2.2.8 // indirect
18-
tinygo.org/x/drivers v0.14.0
18+
tinygo.org/x/drivers v0.15.1
1919
)

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,5 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C
8383
tinygo.org/x/drivers v0.13.0 h1:ohzhFiPb/5dcRop3X+Gdvsr6uswmnpfMX9KsAMtgtTM=
8484
tinygo.org/x/drivers v0.13.0/go.mod h1:mShi1lpVtJFpApkZgwyrzDKHToeGfWIuB08utyHxZ7g=
8585
tinygo.org/x/drivers v0.14.0/go.mod h1:uT2svMq3EpBZpKkGO+NQHjxjGf1f42ra4OnMMwQL2aI=
86+
tinygo.org/x/drivers v0.15.1 h1:fS85Q6CVn1qcSF+n0JN61a5AULrbenjH5XIoYnQjOO4=
87+
tinygo.org/x/drivers v0.15.1/go.mod h1:uT2svMq3EpBZpKkGO+NQHjxjGf1f42ra4OnMMwQL2aI=

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ package bluetooth
22

33
// Version returns a user-readable string showing the version of the bluetooth package for support purposes.
44
// Update this value before release of new version of software.
5-
const Version = "0.2.0"
5+
const Version = "0.3.0"

0 commit comments

Comments
 (0)