Skip to content

Commit 9b7787d

Browse files
authored
Fix telemetry not support v1.0 (#483)
The patch try to make this library support telemetry v1.0. Currently, it doesn't because it contraint between [0.4.3, 1.0.0). Fix by using `or` constraint to support both version.
1 parent 91a4df2 commit 9b7787d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ defmodule Quantum.Mixfile do
9999
[
100100
{:crontab, "~> 1.1"},
101101
{:gen_stage, "~> 0.14 or ~> 1.0"},
102-
{:telemetry, ">= 0.4.3 and < 1.0.0"},
102+
{:telemetry, "~> 0.4.3 or ~> 1.0.0"},
103103
{:tzdata, "~> 1.0", only: [:dev, :test]},
104104
{:ex_doc, ">= 0.0.0", only: [:dev, :docs], runtime: false},
105105
{:excoveralls, "~> 0.5", only: [:test], runtime: false},

0 commit comments

Comments
 (0)