Skip to content

Commit

Permalink
release-it release process
Browse files Browse the repository at this point in the history
  • Loading branch information
izelnakri committed Dec 6, 2020
1 parent a484926 commit dd740ce
Show file tree
Hide file tree
Showing 3 changed files with 7,268 additions and 270 deletions.
27 changes: 22 additions & 5 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
defmodule Eth.Mixfile do
use Mix.Project

@version "0.5.0"
@source_url "https://github.com/izelnakri/eth"

def project() do
[
app: :eth,
version: "0.5.0",
version: @version,
elixir: "~> 1.6",
description: description(),
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
description: description()
deps: deps(),
docs: docs()
]
end

Expand Down Expand Up @@ -49,9 +53,22 @@ defmodule Eth.Mixfile do
maintainers: ["Izel Nakri"],
licenses: ["MIT License"],
links: %{
"GitHub" => "https://github.com/izelnakri/eth",
"Docs" => "https://hexdocs.pm/eth/ETH.html"
"Changelog" => "#{@source_url}/blob/master/CHANGELOG.md",
"Docs" => "https://hexdocs.pm/eth/ETH.html",
"GitHub" => @source_url
}
]
end

defp docs do
[
main: "readme",
source_ref: "v#{@version}",
source_url: @source_url,
extras: [
"README.md",
"CHANGELOG.md"
]
]
end
end
Loading

0 comments on commit dd740ce

Please # to comment.