Skip to content

Commit

Permalink
update deps see issue #51
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonic committed Mar 21, 2022
1 parent 714fb17 commit 821a3ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:auth_plug, "~> 1.4.11"}
{:auth_plug, "~> 1.4.13"}
]
end
```
Expand Down
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule AuthPlug.MixProject do
def project do
[
app: :auth_plug,
version: "1.4.12",
version: "1.4.13",
elixir: "~> 1.12",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand Down Expand Up @@ -48,10 +48,10 @@ defmodule AuthPlug.MixProject do
{:joken, "~> 2.4.1"},

# Plug helper functions: github.com/elixir-plug/plug
{:plug, "~> 1.13.3"},
{:plug, "~> 1.13.4"},

# Decoding JSON data: https://hex.pm/packages/jason
{:jason, "~> 1.2"},
{:jason, "~> 1.3"},

# Track coverage: github.com/parroty/excoveralls
{:excoveralls, "~> 0.14.3", only: :test},
Expand Down

0 comments on commit 821a3ac

Please sign in to comment.