Skip to content

Commit

Permalink
Merge pull request #432 from wojtekmach/wm-updates
Browse files Browse the repository at this point in the history
Update package & docs configuration
  • Loading branch information
mitchellhenke authored Sep 7, 2020
2 parents 824fd35 + c29f14e commit 7c68ca9
Showing 1 changed file with 12 additions and 4 deletions.
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

0 comments on commit 7c68ca9

Please sign in to comment.