From d8081f912d324f570c6e3fa74aba7c203e53bb27 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Mon, 2 May 2022 21:56:19 +0200 Subject: [PATCH] all: prepare for release v1.16.0 Signed-off-by: deadprogram --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ version.go | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5862d33ea..f4649fad5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,34 @@ +1.16.0 +--- +* **bugfix** + * failing leftovers after usage of PR #569 + * Fix servo and DC motors presence + * FIX the bug #568 without further impact, heavy improvements of tests + * fixed PinMode, SetPullUp and SetPolarity, unit tests activated + * ReadGPIO fixed with #576, failing leftovers for PinMode, SetPullUp and SetPolarity + * helper_test ReadByteData, ReadWordData to use reg +* **core** + * update uuid package and directly access it; remove archived uuid package +* **digispark** + * fix ReadByte & WriteByte, rework and add i2c tests + * remove useless code in i2c test +* **drivers** + * add AnalogActuatorDriver, analog temperature sensor, driver for PCF8591 (with 400kbit stabilization), driver for YL-40 + * Adding support for hmc8553l compass + * bmp388 fix missing address write byte in test of Measurements + * drv2605l fix missing address write byte in test of Halt() + * introduce adafruit1109 2x16 LCD with 5 keys + * mcp23017: add mutex for write, hd44780: fix mutexes + * MCP3004: correct number of channels +* **raspi** + * fix raspi PWMPin.SetDutyCycle (#800) +* **tello** + * Guards Dji Tello Halt against nil dereference +* **test** + * don't panic on 'With*' allow simpler wrapping of drivers +* **tinkerboard** + * fix tinkerboard i2c0 to i2c4, improve comments in pin map, improve README + 1.15.0 --- * **build** diff --git a/version.go b/version.go index d38b032f3..4e84dd696 100644 --- a/version.go +++ b/version.go @@ -1,6 +1,6 @@ package gobot -const version = "1.15.0" +const version = "1.16.0" // Version returns the current Gobot version func Version() string {