From c2c1e4d7ffeae49b70eede7311f36ec226bb7750 Mon Sep 17 00:00:00 2001 From: Rafael Scheffer Date: Tue, 11 Jun 2024 12:34:39 +0200 Subject: [PATCH] Require Elixir 1.15 --- CHANGELOG.md | 12 ++++++++++-- mix.exs | 4 ++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cdd116cb..63621402 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,15 @@ -### v0.9.0 - June 11th, 2024: +### v0.11.0 - June 11th, 2024: - Support serialization of list of embeds - Update Ecto and EctoSql to 3.11.2 -- Require Elixir >= 1.13 +- Require Elixir >= 1.15 + +### v0.10.0 - Augh 7th, 2020: +- Add returning option to update_all + +### v0.9.0 - May 14th, 2020: +- Add support for multiple repos +- Add return operation option +- Support update all ### v0.8.3 - September 10th, 2019: - PaperTrail.delete now accepts Ecto.Changeset diff --git a/mix.exs b/mix.exs index 3aed06f9..8357bfc2 100644 --- a/mix.exs +++ b/mix.exs @@ -4,8 +4,8 @@ defmodule PaperTrail.Mixfile do def project do [ app: :paper_trail, - version: "0.9.0", - elixir: "~> 1.13", + version: "0.11.0", + elixir: "~> 1.15", description: description(), build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod,