diff --git a/CHANGELOG.md b/CHANGELOG.md index f4e39809..71dd793e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ ## Changelog +### v0.6.0 + +Changed `Grizzly.CommandClass.CommandClassVersion` to `Grizzly.CommandClass.Version` +and changed `Grizzly.ComamndClass.CommandClassVersion.Get` to +`Grizzly.CommandClass.Version.CommandClassGet` as these names reflect the Z-Wave +specification better. + +If you only have used `Grizzly.get_command_class_version/2` and the related function +in `Grizzly.Node` module this change should not effect you. + +* Enhancements + * Add support for: + * MultiChannelAssociation Command Class + * WakeUp Command Class NoMoreInformation command + * Complete Association Command Class + * ZwaveplusInfo Command Class + * Version Get Command + * Clean up docs + * Renamed `Grizzly.CommandClass.CommandClassVersion` to `Grizzly.CommandClass.Version` + * Renamed `Grizzly.CommandClass.CommandClassVersion.Get` to + `Grizzly.CommandClass.Version.CommandClassGet` + ### v0.5.0 Introduces `Grizzly.Command.EncodeError` exception and updates encoding and diff --git a/README.md b/README.md index b00897c6..7c83fb87 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ An Elixir library for Z-Wave ```elixir def deps do [ - {:grizzly, "~> 0.5"} + {:grizzly, "~> 0.6"} ] end ``` diff --git a/mix.exs b/mix.exs index e989ee11..daaf1bfe 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Grizzly.MixProject do def project do [ app: :grizzly, - version: "0.5.0", + version: "0.6.0", elixir: "~> 1.5", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,