Skip to content

Commit aa4d7a9

Browse files
committed
Relax gettext dependency constraint to allow >= 0.26.0
This allows users to choose between gettext 0.26.x and 1.0.x versions, maintaining backward compatibility while enabling forward compatibility.
1 parent 5ad1b82 commit aa4d7a9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1414
- Changed charlists from the deprecated `''` to `~c""`
1515
- Changed negative range to pass the step of default value for suppressing deprecation warnings
1616
- Update Gettext to 0.26
17+
- Relax Gettext dependency to allow >= 0.26.0 (supports both 0.26.x and 1.0.x)
1718

1819
### Fixed
1920

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ defmodule Timex.Mixfile do
5757
[
5858
{:tzdata, "~> 1.1"},
5959
{:combine, "~> 0.10"},
60-
{:gettext, "~> 0.26"},
60+
{:gettext, ">= 0.26.0"},
6161
{:ex_doc, "~> 0.13", only: [:docs]},
6262
{:benchfella, "~> 0.3", only: [:bench]},
6363
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},

0 commit comments

Comments
 (0)