Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Commit

Permalink
fix the package file and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
shannonwells committed Oct 15, 2021
1 parent 9a58ad0 commit 1e54676
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
erl_crash.dump
*.ez
*.beam
*.tar
19 changes: 17 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ defmodule Verbs.Mixfile do
def project do
[
app: :verbs,
licenses: ["MIT"],
name: "Verbs",
description: description(),
source_url: "https://github.com/shannonwells/verbs_ex",
homepage_url: "https://github.com/shannonwells/verbs_ex",
version: "0.5.4",
package: package(),
version: "0.5.5",
elixir: "~> 1.5",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps()
]
Expand All @@ -21,9 +24,21 @@ defmodule Verbs.Mixfile do
]
end

defp description do
"Conjugates English verbs"
end

# Run "mix help deps" to learn about dependencies.
defp deps do
[
]
end

defp package() do
[
name: "Verbs",
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/shannonwells/verbs_ex"}
]
end
end

0 comments on commit 1e54676

Please sign in to comment.