Skip to content

Commit

Permalink
Update mix.exs to require Elixir >= 1.5.1 (was ~> 1.5.1)
Browse files Browse the repository at this point in the history
Apparently, ~> 1.5.1 means >= 1.5.1 and < 1.6, while >= 1.5.1 doesn't
exclude later minor and major versions.
  • Loading branch information
zuiderkwast committed Feb 16, 2021
1 parent d9b4ffe commit 8fd85e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ defmodule Eredis.Mixfile do
def project do
[
app: :eredis,
version: "1.2.0",
elixir: "~> 1.5.1",
version: "1.3.0-nordix",
elixir: ">= 1.5.1",
start_permanent: Mix.env == :prod,
deps: deps()
]
Expand Down

0 comments on commit 8fd85e2

Please sign in to comment.