aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorChristophe Romain <christophe.romain@process-one.net>2017-06-13 11:02:30 +0200
committerChristophe Romain <christophe.romain@process-one.net>2017-06-13 11:02:30 +0200
commitd63ea000c73cca9c1c7feb70375a138fa91df926 (patch)
tree61a360afc543df870722a9bbde145578a0fa2359 /mix.exs
parentUpdate esip and stun dependencies (diff)
Prepare package for 17.06-beta17.06-beta
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs10
1 files changed, 5 insertions, 5 deletions
diff --git a/mix.exs b/mix.exs
index 6ba8a3146..025552f45 100644
--- a/mix.exs
+++ b/mix.exs
@@ -3,9 +3,9 @@ defmodule Ejabberd.Mixfile do
def project do
[app: :ejabberd,
- version: "17.3.0",
+ version: "17.6.0",
description: description(),
- elixir: "~> 1.3",
+ elixir: "~> 1.4",
elixirc_paths: ["lib"],
compile_path: ".",
compilers: [:asn1] ++ Mix.compilers,
@@ -39,7 +39,7 @@ defmodule Ejabberd.Mixfile do
end
defp deps do
- [{:lager, "~> 3.2"},
+ [{:lager, "~> 3.4.0"},
{:p1_utils, "~> 1.0"},
{:fast_xml, "~> 1.1"},
{:xmpp, "~> 1.1"},
@@ -89,7 +89,7 @@ defmodule Ejabberd.Mixfile do
app
end
- def package do
+ defp package do
[# These are the default files included in the package
files: ["lib", "src", "priv", "mix.exs", "include", "README.md", "COPYING"],
maintainers: ["ProcessOne"],
@@ -100,7 +100,7 @@ defmodule Ejabberd.Mixfile do
"ProcessOne" => "http://www.process-one.net/"}]
end
- def vars do
+ defp vars do
case :file.consult("vars.config") do
{:ok,config} -> config
_ -> [zlib: true, iconv: true]