Skip to content

Commit 06b2023

Browse files
committed
Prepare for release v0.13.0
Signed-off-by: deadprogram <[email protected]>
1 parent 8163dec commit 06b2023

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
0.13.0
2+
---
3+
- **new devices**
4+
- bmi160: add initial support
5+
- bmp280: added support for the Bosch BMP280 temperature and pressure sensor. (#158)
6+
- lsm303agr: add lsm303agr (#162)
7+
- ssd1351: add SSD1351 OLED display driver (#146)
8+
- **enhancements**
9+
- hd44780: add Hd44780i2c driver (#173)
10+
- ili9341
11+
- add ILI9341 TFT driver (SPI) for ATSAMD2x (#174)
12+
- cache address window to prevent sending unnecessary commands (#171)
13+
- ILI9341 TFT driver (SPI) (#153)
14+
- improve performance of ILI9341 on ATSAMD5X
15+
- 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
16+
- tmp102: add Connected func to check for device
17+
- wifinina: added UDP support
18+
- ws2812: update ws2812_avr_16m.go
19+
- **bugfixes**
20+
- apa102: avoid creating garbage
21+
- bmp180: fix temperature type conversion
22+
- **core**
23+
- all
24+
- added custom import path (#161)
25+
- changeover to eliminate all direct use of master/slave terminology
26+
- build: try vendor in working directory to match expected module path
27+
- ci: support Go modules
28+
- modules: update go version and dependency
29+
- **docs**
30+
- docs: reorder to correct alpha and adjust count of supported drivers
31+
132
0.12.0
233
---
334
- **new devices**

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ package drivers
22

33
// Version returns a user-readable string showing the version of the drivers package for support purposes.
44
// Update this value before release of new version of software.
5-
const Version = "0.12.0"
5+
const Version = "0.13.0"

0 commit comments

Comments
 (0)