Skip to content

Commit

Permalink
Merge pull request #11 from reset/elixir-0.13.3
Browse files Browse the repository at this point in the history
update for Elixir 0.13.3
  • Loading branch information
edgurgel committed May 29, 2014
2 parents 9a01e63 + aa3336a commit 14ad253
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ otp_release:
install: mix deps.get
before_install:
- mkdir -p vendor/elixir
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.13.1/Precompiled.zip && unzip -qq Precompiled.zip -d vendor/elixir
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.13.3/Precompiled.zip && unzip -qq Precompiled.zip -d vendor/elixir
- export PATH="$PATH:$PWD/vendor/elixir/bin"
- export MIX_ENV=test
- mix local.hex --force
Expand Down
2 changes: 1 addition & 1 deletion lib/httpoison.ex
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ defmodule HTTPoison.Base do
{:ok, id} ->
%HTTPoison.AsyncResponse { id: id }
{:error, reason} ->
raise HTTPoison.HTTPError[message: to_string(reason)]
raise HTTPoison.HTTPError, message: to_string(reason)
end
end

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defmodule HTTPoison.Mixfile do
def project do
[ app: :httpoison,
version: "0.1.1",
elixir: "~> 0.13.1",
elixir: "~> 0.13.3",
name: "HTTPoison",
description: @description,
package: package,
Expand Down
1 change: 1 addition & 0 deletions test/httpoison_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ defmodule HTTPoisonTest do

setup_all do
{:ok, _} = :application.ensure_all_started(:httparrot)
:ok
end

test "get" do
Expand Down

0 comments on commit 14ad253

Please sign in to comment.