From 7d7d2507af4f590725af4a101d7cbd16067632e8 Mon Sep 17 00:00:00 2001 From: Kip Cole Date: Thu, 10 Aug 2023 22:23:13 +1000 Subject: [PATCH] Add ex_cldr_territories as an optional dependency. Closes #17 --- CHANGELOG.md | 8 ++++++++ mix.exs | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f406f5c..37f4a1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## Cldr_HTML v1.5.2 + +This is the changelog for Cldr HTML v1.5.2 released on August 11th, 2023. For older changelogs please consult the release tag on [GitHub](https://github.com/elixir-cldr/cldr_html/tags) + +### Bug Fixes + +* Add `ex_cldr_territories` as optional dependency - as it should always have been. Thanks to @cw789 for the report and great patience. Closes #17. Again. + ## Cldr_HTML v1.5.1 This is the changelog for Cldr HTML v1.5.1 released on August 10th, 2023. For older changelogs please consult the release tag on [GitHub](https://github.com/elixir-cldr/cldr_html/tags) diff --git a/mix.exs b/mix.exs index f055a1f..f6af39b 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Cldr.Html.MixProject do use Mix.Project - @version "1.5.1" + @version "1.5.2" def project do [ @@ -77,6 +77,7 @@ defmodule Cldr.Html.MixProject do defp deps do [ {:ex_cldr_currencies, "~> 2.15", optional: true}, + {:ex_cldr_territories, "~> 2.8", optional: true}, {:ex_cldr_units, "~> 3.16", optional: true}, {:ex_cldr_locale_display, "~> 1.4", optional: true}, {:ex_cldr_collation, "~> 0.5", optional: true},