Skip to content

Commit

Permalink
Version 0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwalker committed Oct 21, 2014
1 parent de8c457 commit 6dcce13
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ with.

## Status

[![Build Status](https://travis-ci.org/bitwalker/exirc.svg?branch=0.7.0)](https://travis-ci.org/bitwalker/exirc)
[![Build Status](https://travis-ci.org/bitwalker/exirc.svg?branch=master)](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.

Expand All @@ -23,7 +23,7 @@ Add ExIrc as a dependency to your project in mix.exs, and add it as an applicati

```elixir
defp deps do
[{:exirc, "~> 0.7.2"}]
[{:exirc, "~> 0.8.4"}]
end

defp application do
Expand Down
2 changes: 1 addition & 1 deletion lib/exirc/client.ex
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ defmodule ExIrc.Client do
^local_node ->
Process.alive?(pid) and not Enum.member?(handlers, pid)
_ ->
:rpc.call(node, :erlang, :is_process_alive, [pid])
:rpc.call(node, :erlang, :is_process_alive, [pid]) and not Enum.member?(handlers, pid)
end
case should_add? do
true ->
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule ExIrc.Mixfile do

def project do
[ app: :exirc,
version: "0.8.3",
version: "0.8.4",
elixir: "~> 1.0.0",
description: "An IRC client library for Elixir.",
package: package,
Expand Down

0 comments on commit 6dcce13

Please sign in to comment.