diff --git a/CHANGELOG.md b/CHANGELOG.md index 616d7c6d7..b432e3049 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ +1.10.0 +--- +* **docs** + * add gitter badge to readme +* **gpio** + * AIP1640 led driver, used in Wemos D1 mini's matrix LED shield +* **spi** + * switch to using periph.io for SPI interfaces + * add support for ssd1306 + * add optional params such as bus/chip to all current drivers + * complete refactoring to spi.Connection + * remove unneeded code as suggested by @maruel + * remove unneeded type and cleanup GoDocs +* **ble** + * correct spelling error in function name +* **build** + * update to latest version of Go 1.10 for Travis build +* **cli** + * remove extra newline +* **docs** + * add recently contributed GPIO devices to README +* **joystick** + * able to configure joysticks without external json file + * correct error in scanning script + * correct events used by gamepad-style up/down/left/right buttons + * correct scanner error from ID + * removed double release event +* **tello** + * add support for DJI Tello drone + 1.9.0 --- * **beaglebone** diff --git a/version.go b/version.go index 5661dc015..240788f5b 100644 --- a/version.go +++ b/version.go @@ -1,6 +1,6 @@ package gobot -const version = "1.9.0" +const version = "1.10.0" // Version returns the current Gobot version func Version() string {