aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorMickael Remond <mremond@process-one.net>2016-09-08 10:52:43 +0200
committerMickael Remond <mremond@process-one.net>2016-09-08 10:52:43 +0200
commite6f7233351f6c91aea5e8ab053d73646a3a7b534 (patch)
tree60a1af198eda8aaa8d4204190082060e4e914b2f /mix.exs
parentFix compilation with Elixir 1.3 / R19 (diff)
Support for publishing to hex.pm with latest Elixir mix
Diffstat (limited to '')
-rw-r--r--mix.exs3
1 files changed, 2 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index d414ea574..ee4b60fb2 100644
--- a/mix.exs
+++ b/mix.exs
@@ -3,7 +3,7 @@ defmodule Ejabberd.Mixfile do
def project do
[app: :ejabberd,
- version: "16.06.0",
+ version: "16.08.0",
description: description,
elixir: "~> 1.2",
elixirc_paths: ["lib"],
@@ -61,6 +61,7 @@ defmodule Ejabberd.Mixfile do
# relx is used by exrm. Lock version as for now, ejabberd doesn not compile fine with
# version 3.20:
{:relx, "~> 3.21", only: :dev},
+ {:ex_doc, ">= 0.0.0", only: :dev},
{:meck, "~> 0.8.4", only: :test},
{:moka, github: "processone/moka", tag: "1.0.5c", only: :test}]
end