From 6dcce13cb52033e398656b84cd0fa8bd12eb6483 Mon Sep 17 00:00:00 2001 From: Paul Schoenfelder Date: Tue, 21 Oct 2014 10:51:27 -0500 Subject: [PATCH] Version 0.8.4 --- README.md | 4 ++-- lib/exirc/client.ex | 2 +- mix.exs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ea60662..63a218a 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 diff --git a/lib/exirc/client.ex b/lib/exirc/client.ex index fc94350..7f24130 100644 --- a/lib/exirc/client.ex +++ b/lib/exirc/client.ex @@ -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 -> diff --git a/mix.exs b/mix.exs index 65fcc87..c062956 100644 --- a/mix.exs +++ b/mix.exs @@ -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,