File tree 2 files changed +4
-7
lines changed
2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -61,11 +61,8 @@ Add `:tesla` as dependency in `mix.exs`:
61
61
``` elixir
62
62
defp deps do
63
63
[
64
- {:tesla , " ~> 1.9" },
65
-
66
- # optional, but recommended adapter
67
- {:hackney , " ~> 1.20" },
68
-
64
+ # or latest version
65
+ {:tesla , " ~> 1.11" },
69
66
# optional, required by JSON middleware
70
67
{:jason , " ~> 1.4" }
71
68
]
Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ defmodule Tesla.Mixfile do
2
2
use Mix.Project
3
3
4
4
@ source_url "https://github.com/teamon/tesla"
5
- @ version "1.11.1 "
5
+ @ version "1.11.2 "
6
6
7
7
def project do
8
8
[
9
9
app: :tesla ,
10
10
version: @ version ,
11
11
description: description ( ) ,
12
12
package: package ( ) ,
13
- elixir: "~> 1.10 " ,
13
+ elixir: "~> 1.14 " ,
14
14
elixirc_paths: elixirc_paths ( Mix . env ( ) ) ,
15
15
deps: deps ( ) ,
16
16
lockfile: lockfile ( System . get_env ( "LOCKFILE" ) ) ,
You can’t perform that action at this time.
0 commit comments