Skip to content

Commit f4a1fd5

Browse files
committed
Bump version to 0.27.0
1 parent 78c0f78 commit f4a1fd5

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.27.x
4+
5+
* Add `Tz.PeriodsProvider.next_period/1`.
6+
37
## 0.26.x
48

59
* Add `:iana_version` config.

README.md

Lines changed: 3 additions & 3 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.26.6, `tz` uses version **tzdata2024a** of the IANA time zone database.
11+
[IANA](https://www.iana.org). As of version 0.27.0, `tz` uses version **tzdata2024a** of the IANA time zone database.
1212

1313
* [Installation and usage](#installation-and-usage)
1414
* [Core principles](#core-principles)
@@ -32,7 +32,7 @@ Add `tz` for Elixir as a dependency in your `mix.exs` file:
3232
```elixir
3333
def deps do
3434
[
35-
{:tz, "~> 0.26.6"}
35+
{:tz, "~> 0.27.0"}
3636
]
3737
end
3838
```
@@ -194,7 +194,7 @@ defp deps do
194194
[
195195
{:castore, "~> 1.0"},
196196
{:mint, "~> 1.6"},
197-
{:tz, "~> 0.26"}
197+
{:tz, "~> 0.27"}
198198
]
199199
end
200200
```

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.26.6"
4+
@version "0.27.0"
55

66
def project do
77
[

0 commit comments

Comments
 (0)