diff --git a/README.md b/README.md index 1622508..473eadc 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ module can, by default, only operate on datetimes in the UTC time zone. Alternat third-party libraries, such as `tz`, to bring in time zone support and deal with datetimes in other time zones than UTC. The `tz` library relies on the [time zone database](https://data.iana.org/time-zones/tzdb/) maintained by -[IANA](https://www.iana.org). As of version 0.27.3, `tz` uses version **tzdata2024b** of the IANA time zone database. +[IANA](https://www.iana.org). As of version 0.28.0, `tz` uses version **tzdata2024b** of the IANA time zone database. * [Installation and usage](#installation-and-usage) * [Core principles](#core-principles) @@ -32,7 +32,7 @@ Add `tz` for Elixir as a dependency in your `mix.exs` file: ```elixir def deps do [ - {:tz, "~> 0.27"} + {:tz, "~> 0.28"} ] end ``` @@ -194,7 +194,7 @@ defp deps do [ {:castore, "~> 1.0"}, {:mint, "~> 1.6"}, - {:tz, "~> 0.27"} + {:tz, "~> 0.28"} ] end ```