Skip to content

Commit

Permalink
Fix telemetry not support v1.0 (#483)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
wingyplus authored Aug 10, 2021
1 parent 91a4df2 commit 9b7787d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ defmodule Quantum.Mixfile do
[
{:crontab, "~> 1.1"},
{:gen_stage, "~> 0.14 or ~> 1.0"},
{:telemetry, ">= 0.4.3 and < 1.0.0"},
{:telemetry, "~> 0.4.3 or ~> 1.0.0"},
{:tzdata, "~> 1.0", only: [:dev, :test]},
{:ex_doc, ">= 0.0.0", only: [:dev, :docs], runtime: false},
{:excoveralls, "~> 0.5", only: [:test], runtime: false},
Expand Down

0 comments on commit 9b7787d

Please sign in to comment.