Skip to content

Commit

Permalink
1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdet committed Oct 1, 2018
1 parent 09b6e1f commit 3416ca5
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,13 +1,28 @@
defmodule FuzzyCompare.MixProject do
use Mix.Project

@github_url "https://github.com/patrickdet/fuzzy_compare"

def project do
[
app: :fuzzy_compare,
version: "0.1.0",
version: "1.0.0",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps()
deps: deps(),
description: "A fuzzy string comparison library for Elixir",
source_url: @github_url,
homepage_url: @github_url,
package: [
maintainers: ["Patrick Detlefsen"],
licenses: ["MIT"],
links: %{
"GitHub" => @github_url
}
],
docs: [
main: "FuzzyCompare"
]
]
end

Expand Down

0 comments on commit 3416ca5

Please sign in to comment.