diff --git a/mix.exs b/mix.exs index 7314773..86e93c1 100644 --- a/mix.exs +++ b/mix.exs @@ -1,26 +1,26 @@ defmodule ExIrc.Mixfile do use Mix.Project def project do [ app: :exirc, - version: "0.7.0", + version: "0.7.1", elixir: "~> 0.14.3", description: "An IRC client library for Elixir.", package: package, deps: [] ] end # Configuration for the OTP application def application do [mod: {ExIrc.App, []}] end defp package do [ files: ["lib", "mix.exs", "README.md", "LICENSE"], contributors: ["Paul Schoenfelder"], licenses: ["MIT"], links: [ { "GitHub", "https://github.com/bitwalker/exirc" }, { "Home Page", "http://bitwalker.org/exirc"} ] ] end end