diff --git a/CHANGELOG.md b/CHANGELOG.md index decced3e6..9de19fdd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,45 @@ +0.20.0 +--- +- **new devices** + - irremote: Add basic infra-red driver + - IS31FL3731: add driver for IS31FL3731 matrix LED driver (#370) + - l3gd20: add gyro driver + - SSD1289: Driver for SSD1289 LCD + +- **enhancements** + - **ili9341** + - add support for atsame5x + - added Feather board support to InitDisplay() + - avoid heap allocations + - **lps22hb** + - pin rename, sync with main repo + - **lsmXXX** + - unified, error handling, memory management + - **max7xx** + - Add a SetIntensity() function to max7xx driver and example + - **vl53l1x** + - Add functions for setting 'region of interest' + - Fix switch-case semantics + - **ws2812** + - add support for m5stamp-c3 + - convert AVR assembly to C inline assembly + - support high-MHz ARMv6M chips like the RP2040 + - write inline assembly using C instead of Go + +- **bugfixes** + - **dht** + - fix error check in example + - fix humidity and temperature extraction for DHT22 (#358) + - **esp8266** + - fix ConnectToAccessPoint timeout args + - **image** + - fix interface + - **pca9685** + - add buffered one shot write + - fix on=0 bug + - **wifinina** + - correct sendParamStr to handle empty strings, such as when connecting to an unsecured access point + 0.19.0 --- - **new devices** diff --git a/version.go b/version.go index 97a566f2d..c9a48d0c7 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.19.0" +const Version = "0.20.0"