From ed531980b4efe72c4fd9e768171855de3af2d718 Mon Sep 17 00:00:00 2001 From: Ron Evans Date: Mon, 27 Aug 2018 16:21:45 -0600 Subject: [PATCH] Prepare for release v1.12.0 Signed-off-by: Ron Evans --- CHANGELOG.md | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++ version.go | 2 +- 2 files changed, 55 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c6a9f6bf..6e6ee7d54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,57 @@ +1.12.0 +--- +* **api** + * further improvement of the modular API changes + * modify Start() for more modular initialization, and add StartRaw() for completely custom API implementations + * settled on StartWithoutDefaults() as the method to start API without default routes +* **core** + * add Rescale utility function for straight linear rescaling +* **digispark** + * add examples using digispark with i2c devices blinkm and mlp115a2 + * Added i2c to digispark, but not working yet + * Added some tests for digispark i2c connector + * Digispark i2c fixes, added Test for checking available addresses + * remove test method that should not be in adaptor + * remove test that is expected to ofail, but passes when digispark board is actually connected +* **docs** + * add GrovePi to README + * adjust order of badges in README + * Fixing broken link +* **examples** + * add example that uses both the API and also a custom handler with MJPEG streaming from an attached camera + * small improvements to Tello examples + * update Tello examples for main thread friendly macOS/Windows, add Tello face tracker +* **i2c** + * add commands to JHD1313MDriver + * add commands to PCA9685Driver + * add missing methods so the GrovePi fully implements the Adaptor interface + * add ShowImage() function to ssd1306 driver based on @mikegleasonjr suggestion + * GrovePi digitalwrite implemented + * implemented DigitalRead, DigitalWrite, and AnalogRead for GrovePi + * improve godocs for PCA9685 + * mention that GrovePi requires running firmware 1.3.0 + * update GrovePi to v1.3.0 firmware + * work in progress on GrovePi plus driver +* **joystick** + * add config file for Magicsee R1 contributed by @carl-ranson + * add some additional test coverage for file-based config + * added error handling for config loading in joystick driver + * mention need to be running a Linux kernel v4.14+ for controller mappings to work as expected + * provide constant values for existing joystick configurations +* **raspi** + * export PiBlasterPeriod in Adaptor +* **spi** + * add ShowImage() function to ssd1306 driver based on @mikegleasonjr suggestion +* **tello** + * specify end of msgType position + * add handleResponse testing + * Add motion cessation commands to Tello + * handleResponse only needs an io.Reader + * handleResponse should not send commands + * rename reqConn to cmdConn + * reqConn is only an io.WriteCloser + * send Land() command to drone on Halt() to avoid floating mid-air + 1.11.1 --- * **build** diff --git a/version.go b/version.go index f5bac0b13..66db957c0 100644 --- a/version.go +++ b/version.go @@ -1,6 +1,6 @@ package gobot -const version = "1.11.1" +const version = "1.12.0" // Version returns the current Gobot version func Version() string {