From 4fc12ae8b64ac5619634b8e28c0313eb5086ca9d Mon Sep 17 00:00:00 2001 From: Matt Ludwigs Date: Thu, 20 Jun 2019 07:50:28 -0700 Subject: [PATCH] v0.2.0 --- CHANGELOG.md | 11 +++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..06805e71 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +## Changelog + +## v0.2.0 + +* Fixes + * Logging with old `ZipGateway` label is now `Grizzly` + * Fix queued API from `{ZipGateway, :queued_response, ref, response}` + to `{Grizzly, :queued_response, ref, response}` + * Fix timeout error when waiting for DTLS server from the + `zipgateway` side + diff --git a/README.md b/README.md index 811a358b..88f7353c 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ An Elixir library for Z-Wave ```elixir def deps do [ - {:grizzly, "~> 0.1", organization: "smartrent"} + {:grizzly, "~> 0.2", organization: "smartrent"} ] end ``` diff --git a/mix.exs b/mix.exs index 4a3658a6..95d2365f 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Grizzly.MixProject do def project do [ app: :grizzly, - version: "0.1.0", + version: "0.2.0", elixir: "~> 1.5", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,