From 69d417d08b6fe3edacaf67024fd1ffaf2a8606b8 Mon Sep 17 00:00:00 2001 From: Kip Cole Date: Tue, 7 Mar 2023 10:54:56 +0800 Subject: [PATCH] Elixir 1.11 or later only --- CHANGELOG.md | 2 ++ mix.exs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cf7238..ae11489 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ This is the changelog for Cldr v2.30.0 released on March 7th, 2023. For older c * Fix formatting negative numbers when the currency symbol results in an alphabetic character next to the number. In these cases a special format `:currency_alpha_next_to_number` (or `:accounting_alpha_next_to_number`) is used. These formats are only available in CLDR42 or later and therefore `ex_cldr` version 2.35.0 or later is required. +* Specifies Elixir 1.11 or later in alignment with the requirements for `ex_cldr`. + ### Enhancements * Supports the `:default_currency_format` backend configuration option introduced in `ex_cldr` version 2.35.0. diff --git a/mix.exs b/mix.exs index ba40b1c..b927081 100644 --- a/mix.exs +++ b/mix.exs @@ -9,7 +9,7 @@ defmodule Cldr.Numbers.Mixfile do [ app: :ex_cldr_numbers, version: @version, - elixir: "~> 1.10", + elixir: "~> 1.11", name: "Cldr Numbers", description: description(), source_url: "https://github.com/elixir-cldr/cldr_numbers",