Skip to content

Commit

Permalink
Bump to v0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
pdf committed Nov 19, 2015
1 parent ff995ff commit daa05a5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .goxc.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
],
"BuildConstraints": "!plan9,!netbsd,!openbsd,!dragonfly,!solaris,!nacl",
"MainDirsExclude": "vendor",
"PackageVersion": "0.3.5",
"PackageVersion": "0.3.6",
"TaskSettings": {
"publish-github": {
"body": "",
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ type of device you will interact with.
```go
const (
// VERSION of this library
VERSION = "0.3.5"
VERSION = "0.3.6"
)
```

Expand Down Expand Up @@ -337,6 +337,13 @@ is represented as a 48-bit HSB (Hue, Saturation, Brightness) value. The color
temperature is represented in K (Kelvin) and is used to adjust the warmness /
coolness of a white light, which is most obvious when saturation is close zero.

#### func AverageColor

```go
func AverageColor(colors ...Color) (color Color)
```
AverageColor returns the average of the provided colors

#### type Device

```go
Expand Down
2 changes: 1 addition & 1 deletion golifx.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (

const (
// VERSION of this library
VERSION = "0.3.5"
VERSION = "0.3.6"
)

// NewClient returns a pointer to a new Client and any error that occurred
Expand Down

0 comments on commit daa05a5

Please sign in to comment.