diff --git a/mix.exs b/mix.exs
index c29ae6e..d6f9a09 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.2",
-      elixir: "~> 0.14.3",
+      version: "0.8.0",
+      elixir: "~> 0.15.1",
       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