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 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
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ like this:
1616
1717``` elixir
1818def deps do
19- [{:circuits_gpio , " ~> 2.0 " }]
19+ [{:circuits_gpio , " ~> 2.1 " }]
2020end
2121```
2222
Original file line number Diff line number Diff line change 11defmodule 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
You can’t perform that action at this time.
0 commit comments