From 6e04decf19fb0524490f1e05cc4ffffe70c4d42c Mon Sep 17 00:00:00 2001 From: deadprogram Date: Tue, 4 Mar 2025 18:35:05 +0100 Subject: [PATCH] Prepare for release 0.30 Signed-off-by: deadprogram --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ version.go | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb065a2..b520aed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +0.30.0 +--- +- **new devices** + - **comboat** + - Add wifi driver comboat for Elecrow W5 rp2040 and rp2350 devices (#741) + - **max6675** + - Add MAX6675 device + - **TMC2209** + - Added TMC2209 support (#727) + - **TMC5160** + - Added TMC5160 support (#725) + - **sharpmem** + - Add sharpmem (#724) + +- **enhancements** + - **net** + - move to latest golang.org/x/net v0.33.0 (#732) + - **microphone** + - update microphone driver to use latest i2s interface + +- **bugfixes** + - **net** + - fix typo in DHCP error message + - **aht20** + - Fixed bug in aht20 driver + - **hub75** + - fix data buffering + + 0.29.0 --- - **new devices** diff --git a/version.go b/version.go index da56caa..ab14080 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.29.0" +const Version = "0.30.0"