diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b4358d4..ea4a69c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## 8.0.4 (2020-11-16) -* Do not read dsn config at compile time (#441) +* Do not read DSN config at compile time (#441) ## 8.0.3 (2020-11-11) diff --git a/mix.exs b/mix.exs index 8d5f0eb2..b5ad50e7 100644 --- a/mix.exs +++ b/mix.exs @@ -18,10 +18,11 @@ defmodule Sentry.Mixfile do plt_add_apps: [:mix, :plug, :hackney] ], docs: [ - extras: ["README.md"], + extras: ["README.md", "CHANGELOG.md"], source_ref: "#{@version}", source_url: @source_url, - main: "readme" + main: "readme", + skip_undefined_reference_warnings_on: ["CHANGELOG.md"] ], xref: [exclude: [:hackney, :hackney_pool, Plug.Conn]] ] @@ -54,6 +55,7 @@ defmodule Sentry.Mixfile do maintainers: ["Mitchell Henke", "Jason Stiebs"], licenses: ["MIT"], links: %{ + "Changelog" => "#{@source_url}/blob/master/CHANGELOG.md", "GitHub" => @source_url } ]