Skip to content

Commit

Permalink
Resolve merge conflicts
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <[email protected]>
  • Loading branch information
deadprogram committed Jul 13, 2016
2 parents 4c69b86 + 87dbe52 commit c78be7d
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 6 deletions.
34 changes: 29 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
0.12.0
---
* **Refactor Gobot test helpers into separate package**
* **Improve Gobot.Every method to return channel, allowing it to be halted**
* **Refactor of sysfs adds substantial speed improvements**
* **ble**
* Experimental support for Bluetooth LE.
* Initial support for Battery & Device Information services
* Initial support for Sphero BLE robots such as Ollie
* Initial support for Parrot Minidrone
* **audio**
* Add new platform for Audio playback
* **gpio**
* Support added for new GPIO device:
* RGB LED
* Bugfixes:
* Correct analog to better handle quick changes
* Correct handling of errors and buffering for Wiichuk
* **mqtt**
* Add support for MQTT authentication
* **opencv**
* Switching to use main fork of OpenCV
* Some minor bugfixes related to face tracking

0.11.0
---
* **Support for Golang 1.6**
Expand Down Expand Up @@ -76,7 +100,7 @@
- firmata
- Add optional io.ReadWriteCloser parameter to FirmataAdaptor
- Fix `thread exhaustion` error
- cli
- cli
- generator
- Update generator for new adaptor and driver interfaces
- Add driver, adaptor and project generators
Expand Down Expand Up @@ -129,7 +153,7 @@
- neurosky
- Fix incorrect Event names
- sphero
- Correctly format output of GetRGB
- Correctly format output of GetRGB

0.6.1
---
Expand All @@ -141,7 +165,7 @@
- api
- Add robeaux support
- core
- Refactor `Connection` and `Device`
- Refactor `Connection` and `Device`
- Connections are now a collection of Adaptors
- Devices are now a collection of Drivers
- Add `Event(string)` function instead of `Events[string]` for retrieving Driver event
Expand All @@ -154,8 +178,8 @@
0.5.2
---
- beaglebone
- Add `DirectPinDriver`
- Ensure slots are properly loaded
- Add `DirectPinDriver`
- Ensure slots are properly loaded

0.5.1
---
Expand Down
2 changes: 2 additions & 0 deletions platforms/i2c/mcp23017_driver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ func TestMCP23017DriverReadPort(t *testing.T) {
adaptor.i2cMcpReadImpl = func(a int, b int) ([]byte, error) {
return make([]byte, b), errors.New("read error")
}

val, err := mcp.read(port.IODIR)
gobottest.Assert(t, val, uint8(0))
gobottest.Assert(t, err, errors.New("read error"))
Expand All @@ -330,6 +331,7 @@ func TestMCP23017DriverReadPort(t *testing.T) {
adaptor.i2cMcpReadImpl = func(a int, b int) ([]byte, error) {
return []byte{255}, nil
}

val, _ = mcp.read(port.IODIR)
gobottest.Assert(t, val, uint8(255))
debug = false
Expand Down
1 change: 1 addition & 0 deletions utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package gobot
import (
"crypto/rand"
"errors"
"fmt"
"log"
"math"
"math/big"
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package gobot

const version = "0.11.1"
const version = "0.12.0"

// Version returns the current Gobot version
func Version() string {
Expand Down

0 comments on commit c78be7d

Please sign in to comment.