Skip to content

Commit 27ef189

Browse files
committed
Prepare for drivers release 0.15.0
Signed-off-by: deadprogram <[email protected]>
1 parent e9a6d96 commit 27ef189

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
0.15.0
2+
---
3+
- **new devices**
4+
- dht: add DHTXX thermometer
5+
- mcp23017: new driver for MCP23017 (I2C port expander)
6+
- bmp388: Add bmp388 support (#219)
7+
- **enhancements**
8+
- hd44780: add a mode to work with boards where the RW pin is grounded
9+
- st7789: add scrolling functions to match st7735
10+
- microbitmatrix: matrix now working on microbit v2
11+
- ds1307: Better interface "ReadTime" instead of "Time"
12+
- ws2812: make AVR support more robust
13+
- **bugfixes**
14+
- all: fix main package in examples
15+
- **core**
16+
- adc: update all drivers with ADC to use new config struct
17+
- spi: remove machine.SPI and replace with drivers.SPI interface for almost all SPI drivers
18+
- **testing**
19+
- test: run unit tests against i2c drivers and any spi drivers without direct gpio
20+
- **docs**
21+
- st7789: correct errors on various godoc comments
22+
123
0.14.0
224
---
325
- **new devices**

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![PkgGoDev](https://pkg.go.dev/badge/tinygo.org/x/drivers)](https://pkg.go.dev/tinygo.org/x/drivers) [![CircleCI](https://circleci.com/gh/tinygo-org/drivers/tree/dev.svg?style=svg)](https://circleci.com/gh/tinygo-org/drivers/tree/dev)
44

55

6-
This package provides a collection of hardware drivers for devices that can be used together with [TinyGo](https://tinygo.org).
6+
This package provides a collection of hardware drivers for devices such as sensors and displays that can be used together with [TinyGo](https://tinygo.org).
77

88
## Installing
99

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.14.0"
5+
const Version = "0.15.0"

0 commit comments

Comments
 (0)