From 27ef18930e42eba441ab69c02b6515ae5f38eb48 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Sat, 6 Mar 2021 13:41:58 +0100 Subject: [PATCH] Prepare for drivers release 0.15.0 Signed-off-by: deadprogram --- CHANGELOG.md | 22 ++++++++++++++++++++++ README.md | 2 +- version.go | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89a7443..ff86190 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +0.15.0 +--- +- **new devices** + - dht: add DHTXX thermometer + - mcp23017: new driver for MCP23017 (I2C port expander) + - bmp388: Add bmp388 support (#219) +- **enhancements** + - hd44780: add a mode to work with boards where the RW pin is grounded + - st7789: add scrolling functions to match st7735 + - microbitmatrix: matrix now working on microbit v2 + - ds1307: Better interface "ReadTime" instead of "Time" + - ws2812: make AVR support more robust +- **bugfixes** + - all: fix main package in examples +- **core** + - adc: update all drivers with ADC to use new config struct + - spi: remove machine.SPI and replace with drivers.SPI interface for almost all SPI drivers +- **testing** + - test: run unit tests against i2c drivers and any spi drivers without direct gpio +- **docs** + - st7789: correct errors on various godoc comments + 0.14.0 --- - **new devices** diff --git a/README.md b/README.md index 83b38ca..f9e5400 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![PkgGoDev](https://pkg.go.dev/badge/tinygo.org/x/drivers)](https://pkg.go.dev/tinygo.org/x/drivers) [![CircleCI](https://circleci.com/gh/tinygo-org/drivers/tree/dev.svg?style=svg)](https://circleci.com/gh/tinygo-org/drivers/tree/dev) -This package provides a collection of hardware drivers for devices that can be used together with [TinyGo](https://tinygo.org). +This package provides a collection of hardware drivers for devices such as sensors and displays that can be used together with [TinyGo](https://tinygo.org). ## Installing diff --git a/version.go b/version.go index 950c2e9..f75dab0 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.14.0" +const Version = "0.15.0"