From 5b6e79b5565906e64d1fe3b005c4addd05d66b6b Mon Sep 17 00:00:00 2001 From: Kip Cole Date: Fri, 6 Sep 2024 17:34:54 +1000 Subject: [PATCH] Require Elixir >= 1.12 --- CHANGELOG.md | 4 ++++ mix.exs | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0605e2e..62766c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ This is the changelog for Cldr_Currencies v2.16.3 released on September 6th, 202 * Fix spec for `Cldr.Currency.currency_for_code/1`. Thanks to @Tw33t3r for the PR. Closes #16. +### Enhancements + +* Require Elixir 1.12 as a minimum version. + ## Cldr_Currencies v2.16.2 This is the changelog for Cldr_Currencies v2.16.2 released on July 30th, 2024. For older changelogs please consult the release tag on [GitHub](https://github.com/elixir-cldr/cldr_currencies/tags) diff --git a/mix.exs b/mix.exs index 2113ee7..374a4fb 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ defmodule Cldr.Currencies.MixProject do [ app: :ex_cldr_currencies, version: @version, - elixir: "~> 1.11", + elixir: "~> 1.12", name: "Cldr Currencies", description: description(), source_url: "https://github.com/elixir-cldr/cldr_currencies",