From 8559e8847fd91bc9302b785332498811a26490e9 Mon Sep 17 00:00:00 2001 From: mathieuprog <5883963+mathieuprog@users.noreply.github.com> Date: Thu, 14 Jul 2022 16:26:56 +0200 Subject: [PATCH] Bump version to 1.10.0 --- CHANGELOG.md | 6 ++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d1ab10..2f35cf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.10.x + + * Add `polymorphic_embed_inputs_for/2` for displaying forms in LiveView + * Add `polymorphic_embed_inputs_for/3` for displaying forms in Phoenix templates without + needing to specify the type + ## 1.9.x * Add `PolymorphicEmbed.types/2` function returning the possible types for a polymorphic field diff --git a/README.md b/README.md index 5f90f10..1a31e7d 100644 --- a/README.md +++ b/README.md @@ -256,7 +256,7 @@ Add `polymorphic_embed` for Elixir as a dependency in your `mix.exs` file: ```elixir def deps do [ - {:polymorphic_embed, "~> 1.9.0"} + {:polymorphic_embed, "~> 1.10.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 0aab2ee..cf231ac 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule PolymorphicEmbed.MixProject do use Mix.Project - @version "1.9.0" + @version "1.10.0" def project do [