Fix invalid version specification

It seems that I don't know how to specify the correct version... I would
have sworn that ~> as an upper limit would include 1.3.x ¯\_(ツ)_/¯
This commit is contained in:
Jay Hayes
2017-02-23 10:43:49 -06:00
parent 41955a16de
commit c08904c131

View File

@@ -4,7 +4,7 @@ defmodule Koans.Mixfile do
def project do def project do
[app: :elixir_koans, [app: :elixir_koans,
version: "0.0.1", version: "0.0.1",
elixir: ">= 1.2.1 and ~> 1.4", elixir: ">= 1.2.1 and < 2.0.0",
elixirc_paths: elixirc_path(Mix.env), elixirc_paths: elixirc_path(Mix.env),
deps: deps()] deps: deps()]
end end