diff --git a/.travis.yml b/.travis.yml index 75108e8..039d7cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,17 @@ language: erlang otp_release: - 17.0 env: - - ELIXIR_VERSION=1.0.0-rc1 + - ELIXIR_VERSION=1.0.0 before_install: - wget https://github.com/elixir-lang/elixir/releases/download/v$ELIXIR_VERSION/Precompiled.zip - unzip -d elixir Precompiled.zip before_script: - export PATH=`pwd`/elixir/bin:$PATH - mix local.hex --force - mix deps.get script: - MIX_ENV=all mix test notifications: email: - paulschoenfelder@gmail.com diff --git a/mix.exs b/mix.exs index 9e985c3..c8e2b2c 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.8.1", - elixir: "~> 1.0.0-rc1", + version: "0.8.2", + elixir: "~> 1.0.0", 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