From 32cf28dab8fe02766d62dbb6f26459c4ad4e9ac9 Mon Sep 17 00:00:00 2001 From: Alexander Merkulov Date: Thu, 28 Jul 2016 06:46:53 +0300 Subject: [PATCH] 0.1.4 Version bump. --- lib/redix/pubsub/fastlane/server.ex | 5 ----- mix.exs | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/lib/redix/pubsub/fastlane/server.ex b/lib/redix/pubsub/fastlane/server.ex index daa5f79..ce79b1e 100644 --- a/lib/redix/pubsub/fastlane/server.ex +++ b/lib/redix/pubsub/fastlane/server.ex @@ -110,11 +110,6 @@ defmodule Redix.PubSub.Fastlane.Server do {:noreply, %{ state | connected: false }} end - def handle_cast({:punsubscribe, [pattern], _}, state) do - IO.inspect pattern - {:noreply, %{ state | connected: false }} - end - def handle_info({:redix_pubsub, redix_pid, operation, _}, %{redix_pid: redix_pid} = state) when operation in @subscribed_callbacks do {:noreply, state} end diff --git a/mix.exs b/mix.exs index 02fa2ca..03e1aae 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule RedixPubsubFastlane.Mixfile do use Mix.Project @project_url "https://github.com/merqlove/redix_pubsub_fastlane" - @version "0.1.3" + @version "0.1.4" def project do [app: :redix_pubsub_fastlane,