diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e0229f..f60ded4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ +0.33.0 +--- +- **new devices** + - **ens160** + - Add ens160 i2c driver + - **lsm303dlhc** + - added support for LSM303DLHC e-Compass; (#783) + - **seesaw** + - add support for Adafruit Seesaw encoders + +- **enhancements** + - **ws2812** + - add RP2350 support + - **ssd1306** + - avoid unnecessary heap allocations (#767) + - **gps** + - allow gps init with address + - **lsm6ds3tr** + - avoid unnecessary heap allocations (#766) + +- **bugfixes** + - **gps** + - Fix gps time calculation (#785) + + 0.32.0 --- - **enhancements** diff --git a/version.go b/version.go index 8468fe8..6a85412 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.32.0" +const Version = "0.33.0"