Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
6 changes: 4 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
]
Expand Down Expand Up @@ -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
}
]
Expand Down