diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7734455..0d57be0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.10" + ".": "0.3.11" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d71b3c..8c0b54b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.3.11](https://github.com/elixir-tools/spitfire/compare/v0.3.10...v0.3.11) (2026-04-23) + + +### Performance Improvements + +* prefer recursion over multiple `Keyword.has_key?` ([#129](https://github.com/elixir-tools/spitfire/issues/129)) ([47fad18](https://github.com/elixir-tools/spitfire/commit/47fad18a1bf7ca3ad5bca3b4d06a121e4ddceeb6)) +* replace list length-checks with pattern matching ([#128](https://github.com/elixir-tools/spitfire/issues/128)) ([883764e](https://github.com/elixir-tools/spitfire/commit/883764e62f88a8ae956da4443631d021d0e40e14)) + ## [0.3.10](https://github.com/elixir-tools/spitfire/compare/v0.3.9...v0.3.10) (2026-03-05) diff --git a/mix.exs b/mix.exs index 9ae2566..971be5c 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ defmodule Spitfire.MixProject do [ app: :spitfire, description: "Error resilient parser for Elixir", - version: "0.3.10", + version: "0.3.11", elixir: "~> 1.15", start_permanent: Mix.env() == :prod, deps: deps(),