From 652f18776a92b26e7766138f4801f58510921789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Muska=C5=82a?= Date: Mon, 21 May 2018 21:39:42 +0200 Subject: [PATCH] No need to add to extra applications in mix extra applications is only useful for things that are part of the OTP or Elixir releases. Packages are tracked automatically from deps. Also, in mix the preferred way to specify dependencies is with `~> major.minor` which should allow updating minor versions - those should be backwards compatible. Accidental updates are not a concern due to lockfiles. --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index a9ca3ba..a68c45c 100644 --- a/README.md +++ b/README.md @@ -29,11 +29,8 @@ dep_observer_cli = hex 1.3.1 ```elixir # mix.exs def deps do - [{:observer_cli, "~> 1.3.1"}] + [{:observer_cli, "~> 1.3"}] end - def application do - [extra_applications: [:observer_cli]] - end ``` ------------------ ### How-To