Skip to content

Commit

Permalink
fix: bump elixir version compatibility (#695)
Browse files Browse the repository at this point in the history
fixes #694
  • Loading branch information
yordis authored Jul 9, 2024
1 parent cabe2ae commit 8172d27
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,8 @@ Add `:tesla` as dependency in `mix.exs`:
```elixir
defp deps do
[
{:tesla, "~> 1.9"},

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

# or latest version
{:tesla, "~> 1.11"},
# optional, required by JSON middleware
{:jason, "~> 1.4"}
]
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ defmodule Tesla.Mixfile do
use Mix.Project

@source_url "https://github.com/teamon/tesla"
@version "1.11.1"
@version "1.11.2"

def project do
[
app: :tesla,
version: @version,
description: description(),
package: package(),
elixir: "~> 1.10",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps(),
lockfile: lockfile(System.get_env("LOCKFILE")),
Expand Down

0 comments on commit 8172d27

Please sign in to comment.