We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 188df65 commit 9116c07Copy full SHA for 9116c07
mix.exs
@@ -14,7 +14,8 @@ defmodule DNSCluster.MixProject do
14
deps: deps(),
15
source_url: @scm_url,
16
homepage_url: @scm_url,
17
- description: "Simple DNS clustering for distributed Elixir nodes"
+ description: "Simple DNS clustering for distributed Elixir nodes",
18
+ docs: docs()
19
]
20
end
21
@@ -36,4 +37,12 @@ defmodule DNSCluster.MixProject do
36
37
defp deps do
38
[{:ex_doc, ">= 0.0.0", only: :docs}]
39
40
+
41
+ defp docs do
42
+ [
43
+ source_ref: "v#{@version}",
44
+ skip_undefined_reference_warnings_on: ["CHANGELOG.md"],
45
+ extras: ["CHANGELOG.md"]
46
+ ]
47
+ end
48
0 commit comments