From c50bc3de1203ae065c753d12e058d49341047d1c Mon Sep 17 00:00:00 2001 From: Frank Hunleth Date: Tue, 25 Feb 2020 08:25:17 -0500 Subject: [PATCH] v0.4.5 release --- CHANGELOG.md | 9 +++++++++ mix.exs | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21ab7d9..a3cc8c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## v0.4.5 + +* Bug fixes + * Opening a GPIO to read its state won't clear the interrupt status of another + listener. Registering for interrupts a second time will still clear out the + first registree, though. That's a limitation of the interface. However, for + debugging, it can be nice to look at a GPIO without affecting the program + and this change allows for that. + ## v0.4.4 * Bug fixes diff --git a/mix.exs b/mix.exs index 7a0e8e7..6d5ff5c 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Circuits.GPIO.MixProject do use Mix.Project - @version "0.4.4" + @version "0.4.5" @source_url "https://github.com/elixir-circuits/circuits_gpio" {:ok, system_version} = Version.parse(System.version())