From bb2631c0756e33608b07fb0a50490e874f493da1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Kociszewski?= Date: Thu, 5 Sep 2024 15:53:12 +0200 Subject: [PATCH] remove wx and observer --- README.md | 4 +++- mix.exs | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d90f134..bb7ab7f 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,9 @@ Add ExOwm as a dependency to your `mix.exs` file: ```elixir defp deps() do - [{:ex_owm, "~> 1.3.0"}] + [ + {:ex_owm, "~> 1.3.1"} + ] end ``` diff --git a/mix.exs b/mix.exs index 96d9bfe..1b75261 100644 --- a/mix.exs +++ b/mix.exs @@ -6,7 +6,7 @@ defmodule ExOwm.Mixfile do [ app: :ex_owm, name: "ExOwm", - version: "1.3.0", + version: "1.3.1", description: "OpenWeatherMap API Elixir client.", source_url: @github_url, homepage_url: @github_url, @@ -32,7 +32,7 @@ defmodule ExOwm.Mixfile do # Run "mix help compile.app" to learn about applications. def application do [ - extra_applications: [:logger, :wx, :observer, :runtime_tools], + extra_applications: [:logger, :runtime_tools], mod: {ExOwm.Application, []} ] end