From 9f23761c5e8395752f30968896c33f3d8a90259a Mon Sep 17 00:00:00 2001 From: Ron Evans Date: Mon, 13 Apr 2020 21:21:45 +0200 Subject: [PATCH] Updates for v0.12.0 release Signed-off-by: Ron Evans --- CHANGELOG.md | 10 ++++++++++ version.go | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a3136a..de96fba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +0.12.0 +--- +- **new devices** + - hcsr04: Added HC-SR04 ultrasonic distance sensor. (#143) + - spi/qspi: Low-level IO driver for serial flash memory via SPI and QSPI (#124) + - tmp102: TMP102 low-power digital temperature sensor (#141) + - amg88xx: AMG88xx thermal camera module +- **bugfixes** + - mqtt: reduce use of goroutines in router to not start a new goroutine for each invocation of each callback + 0.11.0 --- - **new devices** diff --git a/version.go b/version.go index c597121..3e54c17 100644 --- a/version.go +++ b/version.go @@ -2,4 +2,4 @@ package drivers // Version returns a user-readable string showing the version of the drivers package for support purposes. // Update this value before release of new version of software. -const Version = "0.11.0" +const Version = "0.12.0"