Skip to content

Commit

Permalink
Prepare for release v0.13.0
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <[email protected]>
  • Loading branch information
deadprogram committed Aug 4, 2020
1 parent 8163dec commit 06b2023
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
0.13.0
---
- **new devices**
- bmi160: add initial support
- bmp280: added support for the Bosch BMP280 temperature and pressure sensor. (#158)
- lsm303agr: add lsm303agr (#162)
- ssd1351: add SSD1351 OLED display driver (#146)
- **enhancements**
- hd44780: add Hd44780i2c driver (#173)
- ili9341
- add ILI9341 TFT driver (SPI) for ATSAMD2x (#174)
- cache address window to prevent sending unnecessary commands (#171)
- ILI9341 TFT driver (SPI) (#153)
- improve performance of ILI9341 on ATSAMD5X
- ST77xx: fix DrawFastHLine for ST77xx, SSD1331 and SSD1351 DrawFastHLine uses FillRectangle(x,y,width,height,c), so height must be 1 to draw a horizontal line
- tmp102: add Connected func to check for device
- wifinina: added UDP support
- ws2812: update ws2812_avr_16m.go
- **bugfixes**
- apa102: avoid creating garbage
- bmp180: fix temperature type conversion
- **core**
- all
- added custom import path (#161)
- changeover to eliminate all direct use of master/slave terminology
- build: try vendor in working directory to match expected module path
- ci: support Go modules
- modules: update go version and dependency
- **docs**
- docs: reorder to correct alpha and adjust count of supported drivers

0.12.0
---
- **new devices**
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.12.0"
const Version = "0.13.0"

0 comments on commit 06b2023

Please sign in to comment.