From d55d0a8d21e710f3eb424eb1c9e2d1cb0fd44d49 Mon Sep 17 00:00:00 2001 From: Rosa Richter Date: Fri, 2 Oct 2020 15:37:10 -0600 Subject: [PATCH] Version 1.0.0 --- README.md | 2 +- mix.exs | 21 ++++++++++++++++++++- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3139b23..db4e2d1 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/mix.exs b/mix.exs index 777377f..288f201 100644 --- a/mix.exs +++ b/mix.exs @@ -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 [