summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Schoenfelder <paulschoenfelder@gmail.com>2014-07-12 23:54:13 -0500
committerPaul Schoenfelder <paulschoenfelder@gmail.com>2014-07-12 23:54:13 -0500
commit5649e72941a1c706922f3e0ffbefdabc40d1c1ef (patch)
tree58d507d420d68951ae44713a7d3788b335abe9e0
parentUpdate travis config to improve build speed (diff)
Version 0.7.0
-rw-r--r--README.md10
-rw-r--r--mix.exs4
2 files changed, 4 insertions, 10 deletions
diff --git a/README.md b/README.md
index a965d04..4df6966 100644
--- a/README.md
+++ b/README.md
@@ -13,23 +13,17 @@ with.
## Status
-[![wercker
-status](https://app.wercker.com/status/236e4911da7c4575c49b1b20b9ec775d/m/
-"wercker
-status")](https://app.wercker.com/project/bykey/236e4911da7c4575c49b1b20b9ec775d)
+[![Build Status](https://travis-ci.org/bitwalker/exirc.svg?branch=0.7.0)](https://travis-ci.org/bitwalker/exirc)
Alpha. The API is complete and everything is implemented, but little testing has been done (I've tested the API against my own local IRC server, but nothing robust enough to call this production ready). Any bugs you find, please report them in the issue tracker and I'll address them as soon as possible. If you have any questions, or if the documentation seems incomplete, let me know and I'll fill it in.
## Getting Started
-If you use expm, the ExIrc package is available
-[here](http://expm.co/exirc).
-
Add ExIrc as a dependency to your project in mix.exs, and add it as an application:
```elixir
defp deps do
- [{:exirc, "~> 0.4.0"}]
+ [{:exirc, "~> 0.7.0"}]
end
defp application do
diff --git a/mix.exs b/mix.exs
index ef828b4..7314773 100644
--- a/mix.exs
+++ b/mix.exs
@@ -3,8 +3,8 @@ defmodule ExIrc.Mixfile do
def project do
[ app: :exirc,
- version: "0.6.0",
- elixir: "~> 0.14.1",
+ version: "0.7.0",
+ elixir: "~> 0.14.3",
description: "An IRC client library for Elixir.",
package: package,
deps: [] ]