Current section
23 Versions
Jump to
Current section
23 Versions
Compare versions
2
files changed
+5
additions
-6
deletions
| @@ -1,7 +1,7 @@ | |
| 1 1 | {<<"app">>,<<"ed25519">>}. |
| 2 2 | {<<"build_tools">>,[<<"mix">>]}. |
| 3 3 | {<<"description">>,<<"Ed25519 signature functions">>}. |
| 4 | - {<<"elixir">>,<<"~> 1.5">>}. |
| 4 | + {<<"elixir">>,<<"~> 1.7">>}. |
| 5 5 | {<<"files">>, |
| 6 6 | [<<"lib">>,<<"lib/ed25519.ex">>,<<"lib/hash.ex">>,<<"mix.exs">>, |
| 7 7 | <<"README.md">>,<<"LICENSE">>]}. |
| @@ -9,7 +9,6 @@ | |
| 9 9 | {<<"links">>, |
| 10 10 | [{<<"GitHub">>,<<"https://github.com/mwmiller/ed25519_ex">>}, |
| 11 11 | {<<"Info">>,<<"http://ed25519.cr.yp.to">>}]}. |
| 12 | - {<<"maintainers">>,[<<"Matt Miller">>]}. |
| 13 12 | {<<"name">>,<<"ed25519">>}. |
| 14 13 | {<<"requirements">>,[]}. |
| 15 | - {<<"version">>,<<"1.3.0">>}. |
| 14 | + {<<"version">>,<<"1.3.1">>}. |
| @@ -4,8 +4,8 @@ defmodule Ed25519.Mixfile do | |
| 4 4 | def project do |
| 5 5 | [ |
| 6 6 | app: :ed25519, |
| 7 | - version: "1.3.0", |
| 8 | - elixir: "~> 1.5", |
| 7 | + version: "1.3.1", |
| 8 | + elixir: "~> 1.7", |
| 9 9 | name: "Ed25519", |
| 10 10 | source_url: "https://github.com/mwmiller/ed25519_ex", |
| 11 11 | build_embedded: Mix.env() == :prod, |
| @@ -24,7 +24,7 @@ defmodule Ed25519.Mixfile do | |
| 24 24 | [ |
| 25 25 | {:earmark, "~> 1.0", only: :dev}, |
| 26 26 | {:ex_doc, "~> 0.18", only: :dev}, |
| 27 | - {:credo, "~> 0.8", only: [:dev, :test]} |
| 27 | + {:credo, "~> 1.0", only: [:dev, :test]} |
| 28 28 | ] |
| 29 29 | end |