From fc963005012258eae0ec328ae87fcf585a6c40a2 Mon Sep 17 00:00:00 2001 From: Frank Hunleth Date: Sun, 14 Jan 2024 08:57:48 -0500 Subject: [PATCH] v2.0.1 release --- CHANGELOG.md | 10 ++++++++-- mix.exs | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88222f7..60ffba4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,16 @@ # Changelog -## v2.0.0 - 2022-11-12 +## v2.0.1 - 2024-01-14 + +* Changes + * Fix race condition when multiple processes load the NIF simultaneously that + would cause an unnecessary crash. + +## v2.0.0 - 2023-11-12 Official v2.0.0 release. No changes from v2.0.0-pre.0. -## v2.0.0-pre.0 - 2022-05-30 +## v2.0.0-pre.0 - 2023-05-30 This is a major update to Circuits.SPI that removes the requirement to use Nerves or Linux. The API is almost the same and the default is to compile and diff --git a/mix.exs b/mix.exs index af51fd8..4269c9a 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Circuits.SPI.MixProject do use Mix.Project - @version "2.0.0" + @version "2.0.1" @description "Use SPI in Elixir" @source_url "https://github.com/elixir-circuits/circuits_spi"