@@ -8,7 +8,7 @@ module can, by default, only operate on datetimes in the UTC time zone. Alternat
88third-party libraries, such as ` tz ` , to bring in time zone support and deal with datetimes in other time zones than UTC.
99
1010The ` tz ` library relies on the [ time zone database] ( https://data.iana.org/time-zones/tzdb/ ) maintained by
11- [ IANA] ( https://www.iana.org ) . As of version 0.5 .0, ` tz ` uses version _ tzdata2019c_ of the IANA time zone database.
11+ [ IANA] ( https://www.iana.org ) . As of version 0.6 .0, ` tz ` uses version _ tzdata2019c_ of the IANA time zone database.
1212
1313## Features
1414
@@ -56,7 +56,7 @@ You can decrease **compilation time**, by rejecting time zone periods before a g
5656config :tz, reject_time_zone_periods_before_year: 2010
5757```
5858
59- By default, no periods will be rejected.
59+ By default, no periods are rejected.
6060
6161You can decrease ** period lookup time** for periods in the future (that have ongoing DST changes), by specifying until
6262what year those periods have to be computed:
@@ -65,7 +65,7 @@ what year those periods have to be computed:
6565config :tz, build_periods_with_ongoing_dst_changes_until_year: 20 + NaiveDateTime.utc_now().year
6666```
6767
68- By default, periods will be computed until 5 years from compilation time.
68+ By default, periods are computed until 5 years from compilation time.
6969
7070## Installation
7171
@@ -74,7 +74,7 @@ Add `tz` for Elixir as a dependency in your `mix.exs` file:
7474``` elixir
7575def deps do
7676 [
77- {:tz , " ~> 0.5 .0" }
77+ {:tz , " ~> 0.6 .0" }
7878 ]
7979end
8080```
0 commit comments