Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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},
Expand Down
Loading