File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v2.1.0 - 2024-04-08
4
+
5
+ * Changes
6
+ * Show backend options via ` backend_info/0 ` so that it's possible to see
7
+ whether you're using CDev test mode or not.
8
+
9
+ ``` elixir
10
+ iex> Circuits .GPIO .backend_info ()
11
+ %{name: {Circuits .GPIO .CDev , [test: true ]}, pins_open: 0 }
12
+ ```
13
+
3
14
## v2.0.2 - 2024-01-17
4
15
5
16
* Bug fixes
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ like this:
16
16
17
17
``` elixir
18
18
def deps do
19
- [{:circuits_gpio , " ~> 2.0 " }]
19
+ [{:circuits_gpio , " ~> 2.1 " }]
20
20
end
21
21
```
22
22
Original file line number Diff line number Diff line change 1
1
defmodule Circuits.GPIO.MixProject do
2
2
use Mix.Project
3
3
4
- @ version "2.0.2 "
4
+ @ version "2.1.0 "
5
5
@ description "Use GPIOs in Elixir"
6
6
@ source_url "https://github.com/elixir-circuits/circuits_gpio"
7
7
You can’t perform that action at this time.
0 commit comments