Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update package & docs configuration #432

Merged
merged 1 commit into from
Sep 7, 2020
Merged
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
16 changes: 12 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
defmodule Sentry.Mixfile do
use Mix.Project

@version "8.0.2"
@source_url "https://github.com/getsentry/sentry-elixir"

def project do
[
app: :sentry,
version: "8.0.2",
version: @version,
elixir: "~> 1.10",
description: "The Official Elixir client for Sentry",
package: package(),
Expand All @@ -14,7 +17,12 @@ defmodule Sentry.Mixfile do
plt_add_deps: :app_tree,
plt_add_apps: [:mix, :plug, :hackney]
],
docs: [extras: ["README.md"], main: "readme"],
docs: [
extras: ["README.md"],
source_ref: "#{@version}",
source_url: @source_url,
main: "readme"
],
xref: [exclude: [:hackney, :hackney_pool, Plug.Conn]]
]
end
Expand Down Expand Up @@ -42,11 +50,11 @@ defmodule Sentry.Mixfile do

defp package do
[
files: ["lib", "LICENSE", "mix.exs", "README.md"],
files: ["lib", "LICENSE", "mix.exs", "README.md", "CHANGELOG.md"],
maintainers: ["Mitchell Henke", "Jason Stiebs"],
licenses: ["MIT"],
links: %{
"github" => "https://github.com/getsentry/sentry-elixir"
"GitHub" => @source_url
}
]
end
Expand Down