Skip to content

Commit

Permalink
updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
handnot2 committed Sep 8, 2017
1 parent 404027b commit feeb98c
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
defmodule Samly.Mixfile do
use Mix.Project

@version "0.4.0"
@version "0.5.0"
@description "SAML plug"
@source_url "https://github.com/handnot2/samly"

def project do
def project() do
[
app: :samly,
version: @version,
description: @description,
docs: docs(),
package: package(),
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
Expand All @@ -18,21 +19,30 @@ defmodule Samly.Mixfile do
end

# Run "mix help compile.app" to learn about applications.
def application do
def application() do
[
extra_applications: [:logger]
]
end

# Run "mix help deps" to learn about dependencies.
defp deps do
defp deps() do
[
{:plug, "~> 1.4"},
{:esaml, "~> 3.0"},
{:ex_doc, "~> 0.16", only: :dev},
]
end

defp docs() do
[
#extras: ["README.md"],
#main: "readme",
source_ref: "v#{@version}",
source_url: @source_url,
]
end

defp package() do
[
maintainers: ["handnot2"],
Expand Down

0 comments on commit feeb98c

Please sign in to comment.