Skip to content

Commit a29808d

Browse files
committed
v2.1.0 release
1 parent 120301e commit a29808d

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

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+
314
## v2.0.2 - 2024-01-17
415

516
* Bug fixes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ like this:
1616

1717
```elixir
1818
def deps do
19-
[{:circuits_gpio, "~> 2.0"}]
19+
[{:circuits_gpio, "~> 2.1"}]
2020
end
2121
```
2222

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Circuits.GPIO.MixProject do
22
use Mix.Project
33

4-
@version "2.0.2"
4+
@version "2.1.0"
55
@description "Use GPIOs in Elixir"
66
@source_url "https://github.com/elixir-circuits/circuits_gpio"
77

0 commit comments

Comments
 (0)