diff --git a/mix.exs b/mix.exs index 5233c18..a13c9cc 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.3.1", + version: "0.3.2", description: "An IRC client library for Elixir.", 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