Skip to content

Commit

Permalink
release v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
khusnetdinov committed Jan 11, 2017
1 parent da16de0 commit 3902e11
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/_build
/cover
/deps
/doc
/temp
erl_crash.dump
*.ez
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@

## 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

Add `sesamex` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[{:sesamex, "~> 0.2.0"}]
[{:sesamex, "~> 0.2.1"}]
end
```

Expand Down
13 changes: 7 additions & 6 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand All @@ -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

Expand Down

0 comments on commit 3902e11

Please # to comment.