From 78865c7e8eec45e8c17c689e0636ddca4223ee18 Mon Sep 17 00:00:00 2001 From: phcurado Date: Mon, 6 Mar 2023 15:22:38 +0200 Subject: [PATCH] release 0.12.0 --- CHANGELOG.md | 1 + README.md | 2 +- mix.exs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 018c348..4311bfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ * [Parameter.Schema.Compiler] Unify schema compiler for macro and functional API. * [Parameter.Types.Any] Renamed module to `Parameter.Types.AnyType` to fix elixir warnings * [Parameter] Fix `load`, `dump` and `validate` functions to correctly parse Enum values in nested schema. +* [Parameter.Schema] default options for nested schema is now available. ### Deprecations diff --git a/README.md b/README.md index 7f5d470..67dc092 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ Add `parameter` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:parameter, "~> 0.11"} + {:parameter, "~> 0.12"} ] end ``` diff --git a/mix.exs b/mix.exs index f779278..464d742 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Parameter.MixProject do use Mix.Project @source_url "https://github.com/phcurado/parameter" - @version "0.11.0" + @version "0.12.0" def project do [