From 019bbbe5fb66ff6ecd50949520253a50ecc72733 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Tue, 29 Oct 2024 20:25:00 +0100 Subject: [PATCH] Prepare for release 0.29 Signed-off-by: deadprogram --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ version.go | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4408f1b09..fb065a215 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,40 @@ +0.29.0 +--- +- **new devices** + - **epd1in54** + - Waveshare 1.54inch B/W e-Paper display (#704) + - **touch** + - add capacitive touch sensing on normal GPIO pins + - **INA219** + - I2C INA219 driver (#705) + - **pcf8591** + - add ADC only implementation for I2C ADC/DAC (#690) + +- **enhancements** + - **pixel** + - add NewImageFromBytes() function to allow creating image from existing slice + - **servo** + - Add function `SetAngleWithMicroseconds` (#695) + - **onewire** + - onewire improvements + - **ssd1306** + - Add function `SetFlip` and `GetFlip` (#702) + - **uc8151** + - add FillRectangle() and SetScroll() functions to satisfy tinyterm.Displayer interface + - **ssd1306** + - add FillRectangle() and SetScroll() functions to satisfy tinyterm.Displayer interface + +- **bugfixes** + - **pixel** + - fix Monochrome setPixel + +- **docs** + - **readme** + - discuss need to change variables in examples + - **sponsor** + - Add sponsor button to key repositories + + 0.28.0 --- - **new devices** diff --git a/version.go b/version.go index 2019a9d1a..da56caa9a 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.28.0" +const Version = "0.29.0"