Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README to use newest versions of dependencies #670

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ Add `:tesla` as dependency in `mix.exs`:
```elixir
defp deps do
[
{:tesla, "~> 1.4"},
{:tesla, "~> 1.9"},

# optional, but recommended adapter
{:hackney, "~> 1.17"},
{:hackney, "~> 1.20"},

# optional, required by JSON middleware
{:jason, ">= 1.0.0"}
{:jason, "~> 1.4"}
]
end
```
Expand Down Expand Up @@ -198,8 +198,8 @@ When using adapter other than `:httpc` remember to add it to the dependencies li
```elixir
defp deps do
[
{:tesla, "~> 1.4.0"},
{:hackney, "~> 1.10"} # when using hackney adapter
{:tesla, "~> 1.9"},
{:hackney, "~> 1.20"} # when using hackney adapter
]
end
```
Expand Down
Loading