diff --git a/mix.exs b/mix.exs index 7e32d53..9b4b5d2 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.2.0", + version: "0.2.1", name: "ExIrc", source_url: "https://github.com/bitwalker/exirc", homepage_url: "http://bitwalker.github.io/exirc", 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 [{:ex_doc, github: "elixir-lang/ex_doc"}] end end diff --git a/package.exs b/package.exs index 74382f4..e2d11af 100644 --- a/package.exs +++ b/package.exs @@ -1,10 +1,10 @@ Expm.Package.new( name: "exirc", description: "An IRC client library written in Elixir", homepage: "https://bitwalker.github.io/exirc", - version: "0.2.0", + version: "0.2.1", keywords: ["irc", "client", "library", "elixir"], maintainers: [[name: "Paul Schoenfelder", email: "paulschoenfelder@gmail.com"]], repositories: [[github: "bitwalker/exirc"]] )