diff --git a/mix.exs b/mix.exs index 88f71c3..af599c3 100644 --- a/mix.exs +++ b/mix.exs @@ -1,24 +1,24 @@ defmodule ExIrc.Mixfile do use Mix.Project def project do [ app: :exirc, - version: "0.0.1", + version: "0.1.0", elixir: "~> 0.11.2", deps: deps ] end # Configuration for the OTP application def application do [mod: {ExIrc.App, []}] end # Returns the list of dependencies in the format: # { :foobar, git: "https://github.com/elixir-lang/foobar.git", tag: "0.1" } # # To specify particular versions, regardless of the tag, do: # { :barbat, "~> 0.1", github: "elixir-lang/barbat.git" } defp deps do [] end end