From 0fe5b8fa61d18368094db8d24461eb4f92d50f7d Mon Sep 17 00:00:00 2001 From: Frank Hunleth Date: Sun, 10 May 2026 16:34:18 -0500 Subject: [PATCH] v1.0.1 release --- CHANGELOG.md | 7 +++++++ mix.exs | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8435abb..26db3d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ # Changelog +## v1.0.1 + +* Changes + * Improve common buffer insertion case when buffer overflows by ~13% + * Remove unneeded list concatenation for reduce + * Property test improvements to cover more edge cases (no issues found) + ## v1.0.0 This release is identical to v0.4.2. diff --git a/mix.exs b/mix.exs index 0c75f91..e2a5277 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule CircularBuffer.MixProject do use Mix.Project - @version "1.0.0" + @version "1.0.1" @description "General purpose circular buffer" @source_url "https://github.com/elixir-toniq/circular_buffer"