We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fbb273 commit c50bc3dCopy full SHA for c50bc3d
CHANGELOG.md
@@ -1,5 +1,14 @@
1
# Changelog
2
3
+## v0.4.5
4
+
5
+* Bug fixes
6
+ * Opening a GPIO to read its state won't clear the interrupt status of another
7
+ listener. Registering for interrupts a second time will still clear out the
8
+ first registree, though. That's a limitation of the interface. However, for
9
+ debugging, it can be nice to look at a GPIO without affecting the program
10
+ and this change allows for that.
11
12
## v0.4.4
13
14
* Bug fixes
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())
0 commit comments