From ce0ce03cfe4891948d90c497a2263174996a31e9 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Tue, 16 Aug 2022 11:43:34 +0200 Subject: [PATCH] all: release 0.22.0 Signed-off-by: deadprogram --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++++ version.go | 2 +- 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dec9ea303..ef972826d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,37 @@ +0.22.0 +--- +- **new devices** + - epd: add waveshare 2.9in (v1) + - makeybutton: add driver for MakeyMakey-like button + +- **enhancements** + - **rtl8720dn** + - add UDP close function + - improve error handling + - **net/http** + - improve header parsing + - add last-will-and-testament to MQTT + - **net/mqtt** + - adds keepalive pinging, disconnect, and graceful goroutine cleanup + - support for cookies when https + - add support for retained messsages + +- **bugfixes** + - irremote: Fix irremote reporting incorrect NEC addresses and command codes (#422) + - net/http: Fix http.Get() with port specification + +- **build** + - Makefile recursively finds unit-tests + - switching to GHA + +- **updates** + - update tinyfont to v0.3.0 + - update tinyfs to v0.2.0 + +- **examples** + - rtl8720dn: add ./examples/rtl8720dn/version + + 0.21.0 --- - **new devices** diff --git a/version.go b/version.go index 4c4f45e5e..8ee8c48b9 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.21.0" +const Version = "0.22.0"