Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.

Commit 13e2d4d

Browse files
committed
Tighten dependency specifications for ex_doc and earmark.
Previous spec for ex_doc allowed upgrade to 0.14.5, which would be fine, but caused a failure in `mix deps.get` because specified version of earmark is too old. But ... we can't upgrade to current earmark (1.1.1 as of this writing) because it deprecates a function that latest ex_doc uses. So we specify latest compatible version.
1 parent 91fd7d1 commit 13e2d4d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

mix.exs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ defmodule Sqlitex.Mixfile do
2525

2626
{:credo, "~> 0.4", only: :dev},
2727
{:dialyze, "~> 0.2.0", only: :dev},
28-
{:earmark, "~> 0.2.1", only: :dev},
29-
{:ex_doc, "~> 0.11", only: :dev},
28+
{:earmark, "1.0.3", only: :dev},
29+
# v1.1 introduces a deprecation warning that causes a lot of console
30+
# noise when used with current as-of-this-writing version of exdoc (0.14.5)
31+
{:ex_doc, "~> 0.14.5", only: :dev},
3032
{:inch_ex, "~> 0.5", only: :dev},
3133

3234
{:excheck, "~> 0.5", only: :test},

0 commit comments

Comments
 (0)