All Versions
12
Latest Version
Avg Release Cycle
84 days
Latest Release
1425 days ago

Changelog History
Page 1

  • v1.1.0 Changes

    May 04, 2020

    Huego version 1.1.0

    • โšก๏ธ Updated docs (#9)
    • Sensor struct has a new field: UniqueID (#10)
    • ๐Ÿ›  Fixes functions that returns an array (#12)
    • โฑ Correct a typo that would prevent schedules to be created (#14)
    • Field GroupState on Group struct is now a pointer (#17)
    • โšก๏ธ Updated Makefile and Travis CI (#20)
    • Scene struct has two new fields: Type and Group (#22)
    • Huego is now context aware (#19)
    • ๐Ÿ“ฆ Tests now use huego package instead of huego_test (#21)
  • v1.0.2 Changes

    November 28, 2018
    • ๐Ÿ‘Œ Improved test coverage
    • โœ… Use of httpmock in tests
  • v1.0.1 Changes

    November 22, 2018
    • โž• Added go.mod for Go 1.11 module compatibility
  • v1.0.0 Changes

    April 04, 2018

    ๐Ÿš€ Exiting beta and entering stable release

  • v1.0.0-beta.2 Changes

    March 03, 2018

    ๐Ÿ‘ Much better error handling. Whenever the bridge API returns an error, huego will return that to the user accordingly through an error struct rather than just throwing a json.UnmarshalTypeError.

  • v1.0.0-beta.1 Changes

    February 05, 2018
    • Sensor.State and Sensor.Config is now interface{} since these varry depending on the type
    • ๐Ÿš€ As of this release Gitflow is obsolete.
  • v1.0.0-alpha.5 Changes

    February 03, 2018
    • โž• Added SetState receivers to Group and Light.
    • ๐Ÿ“‡ Renamed SetLight to SetLightState for a more consistent naming convention.
    • Implemented Capabilities
  • v1.0.0-alpha.4 Changes

    January 21, 2018
    • Huego now has a logo
    • ๐Ÿ”„ Changes to fulfill golint, govet and gofmt
  • v1.0.0-alpha.3 Changes

    January 14, 2018
    • โž• Added Group receivers: Alert(), Bri(), Ct(), Effect(), Hue(), IsOn(), Off(), On(), Rename(), Sat(), Scene(), TransitionTime() and Xy()
    • โž• Added Light receivers: Alert(), Effect() and TransitionTime()
    • ๐Ÿ“‡ Renamed type Action to State that belongs to Group
  • v1.0.0-alpha.2 Changes

    January 13, 2018
    • โž• Added the Bridge type and moved all receivers to bridge.go
    • โž• Added usefull Light receivers: Bri(),Ct(),Hue(),IsOn(),Off(),On(),Rename(),Sat(),Xy()
    • โž• Added DiscoverAll() and Discover()
    • โž• Added more tests