diff --git a/CHANGELOG.md b/CHANGELOG.md index 911d4d2..32fda16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v2.0.6 - 2024-09-27 + +* Bug fixes + * Don't crash on ENXIO (errno 6) failures due to unresponsives I2C targets + * Add ENXIO as a known error for easier debugging next time + ## v2.0.5 - 2024-09-08 Only Elixir 1.13 and later are supported now. There are no known issues with diff --git a/mix.exs b/mix.exs index 19cba0f..fc7d0c6 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Circuits.I2C.MixProject do use Mix.Project - @version "2.0.5" + @version "2.0.6" @description "Use I2C in Elixir" @source_url "https://github.com/elixir-circuits/circuits_i2c"