]> granicus.if.org Git - ejabberd/commitdiff
Update cache_tab app name
authorMickael Remond <mremond@process-one.net>
Tue, 1 Dec 2015 18:17:51 +0000 (19:17 +0100)
committerMickael Remond <mremond@process-one.net>
Tue, 1 Dec 2015 18:17:51 +0000 (19:17 +0100)
mix.exs
rebar.config.script
src/ejabberd_app.erl

diff --git a/mix.exs b/mix.exs
index fcc2973fa92fdc8f6271e338d2f040020b3d0167..e8e34c47e571233fe1d9fffe670f92d34f66d6d8 100644 (file)
--- a/mix.exs
+++ b/mix.exs
@@ -3,7 +3,7 @@ defmodule Ejabberd.Mixfile do
 
   def project do
     [app: :ejabberd,
-     version: "15.09.0",
+     version: "15.11.0",
      elixir: "~> 1.0",
      elixirc_paths: ["lib"],
      compile_path: ".",
@@ -18,7 +18,7 @@ defmodule Ejabberd.Mixfile do
     [mod: {:ejabberd_app, []},
      applications: [:ssl],
      included_applications: [:p1_logger, :p1_yaml, :p1_tls, :p1_xml,
-                             :p1_stringprep, :p1_zlib, :p1_cache_tab,
+                             :p1_stringprep, :p1_zlib, :cache_tab,
                              :mnesia, :p1_utils, :p1_iconv, :esip, :p1_stun,
                              :p1_mysql, :p1_pgsql, :eredis, :oauth2, :xmlrpc]]
   end
@@ -36,7 +36,7 @@ defmodule Ejabberd.Mixfile do
      {:p1_tls, git: "https://github.com/processone/tls"},
      {:p1_stringprep, git: "https://github.com/processone/stringprep"},
      {:p1_zlib, git: "https://github.com/processone/zlib"},
-     {:p1_cache_tab, git: "https://github.com/processone/cache_tab"},
+     {:cache_tab, git: "https://github.com/processone/cache_tab", tag: "1.0.1"},
      {:p1_utils, git: "https://github.com/processone/p1_utils"},
      {:p1_iconv, git: "https://github.com/processone/eiconv"},
      {:esip, git: "https://github.com/processone/p1_sip"},
index dd005d455fdf1c54c438c50691eee8d0d1b5051c..e47890036d19645df27116b3d13cca11769c6025 100644 (file)
@@ -52,7 +52,7 @@ SrcDirs = lists:foldl(
                     Acc
             end, [], Cfg),
 
-Deps = [{p1_cache_tab, ".*", {git, "https://github.com/processone/cache_tab"}},
+Deps = [{cache_tab, ".*", {git, "https://github.com/processone/cache_tab", {tag, "1.0.1"}}},
         {p1_tls, ".*", {git, "https://github.com/processone/tls"}},
         {p1_stringprep, ".*", {git, "https://github.com/processone/stringprep"}},
         {p1_xml, ".*", {git, "https://github.com/processone/xml"}},
index 6e392150479cbee61eac96f98f8fd24c10079610..7d94a6276adcdbc7cb56a67d8898d4f18ec23594 100644 (file)
@@ -257,7 +257,7 @@ start_apps() ->
     ejabberd:start_app(p1_xml),
     ejabberd:start_app(p1_stringprep),
     ejabberd:start_app(p1_zlib),
-    ejabberd:start_app(p1_cache_tab).
+    ejabberd:start_app(cache_tab).
 
 opt_type(net_ticktime) ->
     fun (P) when is_integer(P), P > 0 -> P end;