From 59fc88ff506f216e85596532752900838b044d72 Mon Sep 17 00:00:00 2001 From: Ivan Rublev Date: Mon, 29 Apr 2024 23:04:22 +0200 Subject: [PATCH] fix version --- README.md | 5 +++++ mix.exs | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e6ec33b..dac0fec 100644 --- a/README.md +++ b/README.md @@ -794,6 +794,11 @@ Domo compiled validation functions for the given struct based on the described t ## Changelog +## v1.5.15 + +* Support sum types as element of a list: [a | b] +* Improve compatibility with Elixir 1.16 + ## v1.5.14 * Fix validate_type/* function to run without Ecto validate_required warning. diff --git a/mix.exs b/mix.exs index c24cdd6..0160715 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Domo.MixProject do use Mix.Project - @version "1.5.14" + @version "1.5.15" @repo_url "https://github.com/IvanRublev/Domo" def project do @@ -72,7 +72,7 @@ defmodule Domo.MixProject do {:nimble_parsec, "1.1.0"}, # Documentation dependencies - {:ex_doc, ">= 0.0.0", only: :docs, runtime: false} + {:ex_doc, "0.26.0", only: :docs, runtime: false} ] end