Skip to content

Commit

Permalink
Bump to version 0.24
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieuprog committed Nov 9, 2022
1 parent 12aea72 commit 6f7d83a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.24.x

* Handle negative years
* Convert non-iso datetime to iso

## 0.23.x

* Fix warnings
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -157,7 +157,7 @@ defp deps do
[
{:castore, "~> 0.1"},
{:mint, "~> 1.4"},
{:tz, "~> 0.23.0"}
{:tz, "~> 0.24.0"}
]
end
```
Expand Down Expand Up @@ -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
```
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Tz.MixProject do
use Mix.Project

@version "0.23.0"
@version "0.24.0"

def project do
[
Expand Down

0 comments on commit 6f7d83a

Please sign in to comment.