Skip to content

Commit eb5d968

Browse files
committed
Bump version to 0.6.0
1 parent d7b3e11 commit eb5d968

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module can, by default, only operate on datetimes in the UTC time zone. Alternat
88
third-party libraries, such as `tz`, to bring in time zone support and deal with datetimes in other time zones than UTC.
99

1010
The `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
5656
config :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

6161
You can decrease **period lookup time** for periods in the future (that have ongoing DST changes), by specifying until
6262
what year those periods have to be computed:
@@ -65,7 +65,7 @@ what year those periods have to be computed:
6565
config :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
7575
def deps do
7676
[
77-
{:tz, "~> 0.5.0"}
77+
{:tz, "~> 0.6.0"}
7878
]
7979
end
8080
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Tz.MixProject do
22
use Mix.Project
33

4-
@version "0.5.0"
4+
@version "0.6.0"
55

66
def project do
77
[

0 commit comments

Comments
 (0)