From 5e4f4d30219fe427b30568a4be5fefb19eb1f554 Mon Sep 17 00:00:00 2001 From: Hsuancheng Chen Date: Mon, 7 May 2018 11:02:01 +0800 Subject: [PATCH] Update README.md from [elixir 1.4 documentation](https://elixir-lang.org/blog/2017/01/05/elixir-v1-4-0-released/), Mix v1.4 now automatically infers your applications list as long as you leave the `:applications` key empty. So we should put an explanation for people who use more than version 1.4. Everything works well. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 537462b..738393d 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ config :nadia, ``` And then, in `mix.exs`, list `:nadia` as an application inside `application/0`: - +(you can omit this if your elixir is >= 1.4) ```elixir def application do [applications: [:nadia]]