Current section
3 Versions
Jump to
Current section
3 Versions
Compare versions
2
files changed
+7
additions
-7
deletions
| @@ -13,9 +13,9 @@ | |
| 13 13 | [{<<"httpoison">>, |
| 14 14 | [{<<"app">>,<<"httpoison">>}, |
| 15 15 | {<<"optional">>,false}, |
| 16 | - {<<"requirement">>,<<"~> 0.7.4">>}]}, |
| 16 | + {<<"requirement">>,<<"~> 0.8.0">>}]}, |
| 17 17 | {<<"poison">>, |
| 18 18 | [{<<"app">>,<<"poison">>}, |
| 19 19 | {<<"optional">>,false}, |
| 20 20 | {<<"requirement">>,<<"~> 1.5.0">>}]}]}. |
| 21 | - {<<"version">>,<<"0.0.1">>}. |
| 21 | + {<<"version">>,<<"0.0.2">>}. |
| @@ -3,7 +3,7 @@ defmodule Harvest.Mixfile do | |
| 3 3 | |
| 4 4 | def project do |
| 5 5 | [app: :harvest, |
| 6 | - version: "0.0.1", |
| 6 | + version: "0.0.2", |
| 7 7 | elixir: "~> 1.1", |
| 8 8 | description: "Harvest Time Tracking API wrapper written in Elixir", |
| 9 9 | package: package, |
| @@ -29,11 +29,11 @@ defmodule Harvest.Mixfile do | |
| 29 29 | # |
| 30 30 | # Type `mix help deps` for more examples and options |
| 31 31 | defp deps do |
| 32 | - [{:httpoison, "~> 0.7.4"}, |
| 32 | + [{:httpoison, "~> 0.8.0"}, |
| 33 33 | {:poison, "~> 1.5.0"}, |
| 34 | - {:exvcr, "~> 0.5.1", only: :test}, |
| 35 | - {:earmark, "~> 0.1", only: :docs}, |
| 36 | - {:ex_doc, "~> 0.9", only: :docs}, |
| 34 | + {:exvcr, "~> 0.7.0", only: :test}, |
| 35 | + {:earmark, "~> 0.2", only: :docs}, |
| 36 | + {:ex_doc, "~> 0.11", only: :docs}, |
| 37 37 | {:inch_ex, "~> 0.4", only: :docs}] |
| 38 38 | end |