diff --git a/mix.exs b/mix.exs index 9ef19d7..6ac9057 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.2", + version: "0.3.0", 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 [] end end diff --git a/package.exs b/package.exs index 12095bf..06b65a1 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.2", + version: "0.3.0", keywords: ["irc", "client", "library", "elixir"], maintainers: [[name: "Paul Schoenfelder", email: "paulschoenfelder@gmail.com"]], repositories: [[github: "bitwalker/exirc"]] )