diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e6f4cf..cd32ecd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.24.x + +* Handle negative years +* Convert non-iso datetime to iso + ## 0.23.x * Fix warnings diff --git a/README.md b/README.md index d01f79c..fefe9b1 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.23.0, `tz` uses version **tzdata2022f** of the IANA time zone database. +[IANA](https://www.iana.org). As of version 0.24.0, `tz` uses version **tzdata2022f** of the IANA time zone database. * [Usage](#usage) * [Core principles](#core-principles) @@ -157,7 +157,7 @@ defp deps do [ {:castore, "~> 0.1"}, {:mint, "~> 1.4"}, - {:tz, "~> 0.23.0"} + {:tz, "~> 0.24.0"} ] end ``` @@ -275,7 +275,7 @@ Add `tz` for Elixir as a dependency in your `mix.exs` file: ```elixir def deps do [ - {:tz, "~> 0.23.0"} + {:tz, "~> 0.24.0"} ] end ``` diff --git a/mix.exs b/mix.exs index f838f3e..e12a2fd 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Tz.MixProject do use Mix.Project - @version "0.23.0" + @version "0.24.0" def project do [