diff --git a/CHANGELOG.md b/CHANGELOG.md index c1b0057e..4757f898 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Changed charlists from the deprecated `''` to `~c""` - Changed negative range to pass the step of default value for suppressing deprecation warnings - Update Gettext to 0.26 +- Relax Gettext dependency to allow >= 0.26.0 (supports both 0.26.x and 1.0.x) ### Fixed diff --git a/mix.exs b/mix.exs index f7b922ff..08e6648a 100644 --- a/mix.exs +++ b/mix.exs @@ -57,7 +57,7 @@ defmodule Timex.Mixfile do [ {:tzdata, "~> 1.1"}, {:combine, "~> 0.10"}, - {:gettext, "~> 0.26"}, + {:gettext, ">= 0.26.0"}, {:ex_doc, "~> 0.13", only: [:docs]}, {:benchfella, "~> 0.3", only: [:bench]}, {:dialyxir, "~> 1.0", only: [:dev], runtime: false},