diff --git a/CHANGELOG.md b/CHANGELOG.md index ef972826d..8b02067bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,34 @@ +0.23.0 +--- +- **new devices** + - Add GC9A01 Driver (#452) + - Initial support for VL6180x sensor + +- **enhancements** + - **rtl8720dn** + - refactor by bringing this driver more in line with wifinina and espat + - **ssd1306** + - add getter method to the current buffer + - **makeybutton** + - revise to better match the algorithm defined by the original + - **espat,wifinina,rtl8720dn** + - change ssid/pass from const to var + +- **bugfixes** + - **microbitmatrix** + - fix inverted axis + - **espat** + - Trim quotes from IP returned by espat's GetDNS() + - **all** + - correct go fmt + +- **examples** + - **rtl8720dn** + - remove wifi setting + - add call to optional debug setting + - update all remaining examples for refactored API + + 0.22.0 --- - **new devices** diff --git a/version.go b/version.go index 8ee8c48b9..92233b4f2 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.22.0" +const Version = "0.23.0"