diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e724ec..d5de7c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [v0.3.0] - 2026-04-28 + +### Added + +- Igniter installer task (`mix permit_ecto.install`) for zero config project setup, scaffolds `Authorization` and `Authorization.Permissions` modules with auto detection of Ecto repo (#24) + +### Fixed + +- Added failing test documenting the empty associations edge case (#22) + ## [v0.2.4] ### Fixed - Fix docs and readme: link typo, examples of `accessible_by` usage. diff --git a/mix.exs b/mix.exs index a803bdd..7e8c9b9 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Permit.Ecto.MixProject do @moduledoc false use Mix.Project - @version "0.2.4" + @version "0.3.0" @source_url "https://github.com/curiosum-dev/permit_ecto" def project do @@ -51,7 +51,7 @@ defmodule Permit.Ecto.MixProject do # Run "mix help deps" to learn about dependencies. defp deps do [ - {:permit, "~> 0.3.3"}, + {:permit, "~> 0.4.0"}, {:ecto, ">= 3.11.2 and < 4.0.0"}, {:ecto_sql, ">= 3.11.0"}, {:postgrex, "~> 0.16", only: :test},