From f896ebcc19471527c8a76971bcfb168620dae5fd Mon Sep 17 00:00:00 2001 From: David JULIEN Date: Tue, 10 Sep 2024 15:20:37 +0200 Subject: [PATCH] chore: new version 0.6.0 (#27) --- README.md | 2 +- mix.exs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8af046b..478b6b9 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Add `:ecto_anon` to your `mix.exs` dependencies: ```elixir def deps do [ - {:ecto_anon, "~> 0.5.0"} + {:ecto_anon, "~> 0.6.0"} ] end ``` diff --git a/mix.exs b/mix.exs index b287f48..eb0e340 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule EctoAnon.MixProject do use Mix.Project @source_url "https://github.com/WTTJ/ecto_anon" - @version "0.5.0" + @version "0.6.0" def project do [ @@ -10,7 +10,7 @@ defmodule EctoAnon.MixProject do name: "ecto_anon", description: "Data anonymization for your Ecto models", version: @version, - elixir: "~> 1.12", + elixir: "~> 1.16", start_permanent: Mix.env() == :prod, deps: deps(), elixirc_paths: elixirc_paths(Mix.env()),