diff options
author | rinpatch <rinpatch@sdf.org> | 2020-05-10 17:13:03 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-05-10 17:13:03 +0000 |
commit | a6283bbae13a873af969336bd4e62011777a1a70 (patch) | |
tree | 12ddd0c3bf128fe0d897ca75c044726666f20207 /mix.exs | |
parent | 019a192e43c2421c74e5126e753aac095db8ad54 (diff) | |
parent | 489201d5d549a1ad32bf55d7a29d53c8f2316f14 (diff) | |
download | pleroma-2.0.4.tar.gz |
Merge branch 'release/2.0.4' into 'stable'v2.0.4
Release/2.0.4
See merge request pleroma/pleroma!2503
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -4,7 +4,7 @@ defmodule Pleroma.Mixfile do def project do [ app: :pleroma, - version: version("2.0.3"), + version: version("2.0.4"), elixir: "~> 1.8", elixirc_paths: elixirc_paths(Mix.env()), compilers: [:phoenix, :gettext] ++ Mix.compilers(), @@ -63,7 +63,15 @@ defmodule Pleroma.Mixfile do def application do [ mod: {Pleroma.Application, []}, - extra_applications: [:logger, :runtime_tools, :comeonin, :quack, :fast_sanitize, :ssl], + extra_applications: [ + :logger, + :runtime_tools, + :comeonin, + :quack, + :fast_sanitize, + :ssl, + :eldap + ], included_applications: [:ex_syslogger] ] end |