diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d5ddfdcf..239e95bf1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,40 @@ +0.26.0 +--- +- **core** + - i2c iface refactor: Resolve #559 + - fix uses of legacy i2c WriteRegister calls + - add correct Tx implementation for mock I2C interfaces + - bump golang.org/x/net version + +- **new devices** + - **bma42x** + - add new BMA421/BMA425 driver + - **ndir** + - add Sandbox Electronics NDIR CO2 sensor driver (#580) + - **mpu9150** + - implement driver for Mpu9150 (#596) + - **sht4x** + - implement driver for sht4x (#597) + - **pcf8523** + - implement driver for pcf8523 (#599) + +- **enhancements** + - **ssd1306** + - improve bus error handling + +- **bugfixes** + - **st7789** + - fix scrolling when rotated by 180° + - **st7789** + - fix incorrect Rotation configuration + - fix SetScrollArea + - **ili9341** + - fix SetScrollArea + +- **build** + - use latest tag of tinygo-dev container for running tests + + 0.25.0 --- diff --git a/README.md b/README.md index 00590f108..b86e2bbd9 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) [![Build](https://github.com/tinygo-org/drivers/actions/workflows/build.yml/badge.svg?branch=dev)](https://github.com/tinygo-org/drivers/actions/workflows/build.yml) -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). +This package provides a collection of 101 different hardware drivers for devices such as sensors and displays that can be used together with [TinyGo](https://tinygo.org). ## Installing @@ -52,7 +52,7 @@ func main() { ## Supported devices -There are currently 96 devices supported. For the complete list, please see: +There are currently 99 devices supported. For the complete list, please see: https://tinygo.org/docs/reference/devices/ ## Contributing diff --git a/version.go b/version.go index 0ebd33494..2f0b54b1d 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.25.0" +const Version = "0.26.0"