diff --git a/CHANGELOG.md b/CHANGELOG.md index e93ba19..cce73ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,40 @@ +0.35.0 +--- +- **new devices** + - **unoqmatrix** + - LED matrix on the Arduino Uno Q + - **waveshare-epd (ssd1680)** + - Add driver for Waveshare 2.9 inch v2 e-paper display + +- **enhancements** + - **gps** + - add UBX config command support (#831) + - improve implementation for UBX config commands + - revamp validSentence() to avoid heap allocation for errors + - export some errors for checking/suppression from client + - improvements and corrections for config commands + - **lora** + - fill out more constants for lora device + - **mcp2515** + - add support for extended CAN IDs (#857) + - **si5351** + - complete refactor for more complete interface + - **st7735** + - remove dependency on the machine package + - **sx127x** + - add functions used for FSK radio communication + - **ws2812** + - add brightness control + - add PIO support for RP2040/RP2350 + +- **bugfixes** + - **st7789** + - fix scroll on rotated displays + - fix driver when rotated 90ยบ + - **ws2812** + - fix brightness control issues (#858) + + 0.34.0 --- - **core** diff --git a/README.md b/README.md index d049163..fbcef08 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 139 different hardware drivers for devices such as sensors, displays, wireless adaptors, and actuators, that can be used together with [TinyGo](https://tinygo.org). +This package provides a collection of over 140 different hardware drivers for devices such as sensors, displays, wireless adaptors, and actuators, that can be used together with [TinyGo](https://tinygo.org). For the complete list, please see: https://tinygo.org/docs/reference/devices/ diff --git a/version.go b/version.go index d8ed5c8..0b44de9 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.34.0" +const Version = "0.35.0"