Skip to content

Commit

Permalink
2.0.1-rc.0 (#130)
Browse files Browse the repository at this point in the history
* 2.0.1-rc.0

* Add missing source_url attribute
  • Loading branch information
cottinisimone authored Dec 19, 2023
1 parent cd72836 commit 963c9ed
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
defmodule OpentelemetryAbsinthe.MixProject do
use Mix.Project

@source_url "https://github.com/primait/opentelemetry_absinthe"
@version "2.0.1-rc.0"

def project do
[
app: :opentelemetry_absinthe,
version: "2.0.1",
version: @version,
elixir: "~> 1.12",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand All @@ -29,7 +32,10 @@ defmodule OpentelemetryAbsinthe.MixProject do
defp docs do
[
main: "OpentelemetryAbsinthe",
formatters: ["html"]
source_ref: @version,
source_url: @source_url,
formatters: ["html"],
extras: ["README.md"]
]
end

Expand Down

0 comments on commit 963c9ed

Please sign in to comment.