From 3902e11d58a5c6d26d7ef1108b7711c0a9ac2347 Mon Sep 17 00:00:00 2001 From: Marat Khusnetdinov Date: Wed, 11 Jan 2017 19:45:46 +0300 Subject: [PATCH] release v0.2.1 --- .gitignore | 1 + README.md | 4 ++-- mix.exs | 13 +++++++------ 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index d4a4f32..5a23d03 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ /_build /cover /deps +/doc /temp erl_crash.dump *.ez diff --git a/README.md b/README.md index ed7e6e5..ffb2e8a 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ## Getting started -Sesamex are a simple and flexible authentication solution for Elixir / Phoenix. +Sesamex is a simple and flexible authentication solution for Elixir / Phoenix. ## Installation @@ -14,7 +14,7 @@ Add `sesamex` to your list of dependencies in `mix.exs`: ```elixir def deps do - [{:sesamex, "~> 0.2.0"}] + [{:sesamex, "~> 0.2.1"}] end ``` diff --git a/mix.exs b/mix.exs index 4525d03..92fc05c 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule Sesames.Mixfile do def project do [app: :sesamex, - version: "0.2.0", + version: "0.2.1", elixir: "~> 1.3", description: description(), package: package(), @@ -16,17 +16,18 @@ defmodule Sesames.Mixfile do defp description do """ - Description + Sesamex is a simple and flexible authentication solution for Elixir / Phoenix. """ end defp package do [ name: :sesamex, - files: [], - maintainers: [], - licenses: [], - links: [] + files: ~w(lib) ++ + ~w(LICENSE README.md mix.exs), + maintainers: ["Marat Khusnetdinov"], + licenses: ["MIT"], + links: %{"GitHub" => "https://github.com/khusnetdinov/sesamex"} ] end