Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Cantido committed Oct 2, 2020
1 parent 24c99bc commit d55d0a8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ by adding `liberator` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:liberator, "~> 0.1.0"}
{:liberator, "~> 1.0.0"}
]
end
```
Expand Down
21 changes: 20 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,32 @@ defmodule Liberator.MixProject do
def project do
[
app: :liberator,
version: "0.1.0",
description: "An Elixir library for building controllers that obey the HTTP spec."
version: "1.0.0",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end

defp package do
[
maintainers: ["Rosa Richter"],
licenses: ["GPL v3"],
links: %{"Github" => "https://github.com/Cantido/liberator"}
]
end

def docs do
[
main: "Liberator",
source_url: "https://github.com/Cantido/liberator",
extras: [
"README.md"
]
]
end

# Run "mix help compile.app" to learn about applications.
def application do
[
Expand Down

0 comments on commit d55d0a8

Please sign in to comment.