From f90ef6109b44a9ac97e3ee6cea73955cbfd732f7 Mon Sep 17 00:00:00 2001 From: Sitch Date: Wed, 12 Oct 2016 20:36:29 -0400 Subject: [PATCH 1/5] Fix locked Poison lib dependency --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 4b3ca06..dc6114f 100644 --- a/mix.exs +++ b/mix.exs @@ -17,7 +17,7 @@ defmodule Sentient.Mixfile do end defp deps do - [{:poison, "~> 1.5"}] + [{:poison, ">= 1.5"}] end defp package do From d8242d9d58182acdf13527a389d7a7399ccd7779 Mon Sep 17 00:00:00 2001 From: Sitch Date: Wed, 12 Oct 2016 20:38:57 -0400 Subject: [PATCH 2/5] Fix minor version --- mix.exs | 2 +- mix.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mix.exs b/mix.exs index dc6114f..4382ed1 100644 --- a/mix.exs +++ b/mix.exs @@ -17,7 +17,7 @@ defmodule Sentient.Mixfile do end defp deps do - [{:poison, ">= 1.5"}] + [{:poison, ">= 1.5.0"}] end defp package do diff --git a/mix.lock b/mix.lock index fae0ede..8cfe4fa 100644 --- a/mix.lock +++ b/mix.lock @@ -1 +1 @@ -%{"poison": {:hex, :poison, "1.5.0"}} +%{"poison": {:hex, :poison, "1.5.0", "f2f4f460623a6f154683abae34352525e1d918380267cdbd949a07ba57503248", [:mix], []}} From 32a721bd60ffaf6b473d67ea4526dbc2ff464980 Mon Sep 17 00:00:00 2001 From: Sitch Date: Mon, 6 Mar 2017 23:21:03 -0500 Subject: [PATCH 3/5] upgrade poison --- mix.exs | 6 +++--- mix.lock | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mix.exs b/mix.exs index 4382ed1..102d1cd 100644 --- a/mix.exs +++ b/mix.exs @@ -3,8 +3,8 @@ defmodule Sentient.Mixfile do def project do [app: :sentient, - version: "0.0.2", - elixir: "~> 1.1", + version: "0.0.3", + elixir: "~> 1.4", description: "Simple sentiment analysis based on the AFINN-111 wordlist", package: package, build_embedded: Mix.env == :prod, @@ -17,7 +17,7 @@ defmodule Sentient.Mixfile do end defp deps do - [{:poison, ">= 1.5.0"}] + [{:poison, ">= 2.2.0"}] end defp package do diff --git a/mix.lock b/mix.lock index 8cfe4fa..abc459d 100644 --- a/mix.lock +++ b/mix.lock @@ -1 +1 @@ -%{"poison": {:hex, :poison, "1.5.0", "f2f4f460623a6f154683abae34352525e1d918380267cdbd949a07ba57503248", [:mix], []}} +%{"poison": {:hex, :poison, "3.1.0", "d9eb636610e096f86f25d9a46f35a9facac35609a7591b3be3326e99a0484665", [:mix], []}} From 5fa9dce5342d04bca2ff9abd2cc8957952d1c936 Mon Sep 17 00:00:00 2001 From: Sitch Date: Mon, 6 Mar 2017 23:22:44 -0500 Subject: [PATCH 4/5] linting --- mix.exs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mix.exs b/mix.exs index 102d1cd..0ef74c9 100644 --- a/mix.exs +++ b/mix.exs @@ -6,10 +6,10 @@ defmodule Sentient.Mixfile do version: "0.0.3", elixir: "~> 1.4", description: "Simple sentiment analysis based on the AFINN-111 wordlist", - package: package, + package: package(), build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, - deps: deps] + deps: deps()] end def application do From 4a5a0b34dad62d5169e0b0ea79500acf9c90174a Mon Sep 17 00:00:00 2001 From: Sitch Date: Mon, 6 Mar 2017 23:23:24 -0500 Subject: [PATCH 5/5] version bump 0.3.0 --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 0ef74c9..89fd32e 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule Sentient.Mixfile do def project do [app: :sentient, - version: "0.0.3", + version: "0.0.4", elixir: "~> 1.4", description: "Simple sentiment analysis based on the AFINN-111 wordlist", package: package(),