From b8c23bf1c7e9dd5de62f2996e7524e8ae026cba5 Mon Sep 17 00:00:00 2001 From: camirmas Date: Mon, 26 Sep 2016 22:30:28 -0700 Subject: [PATCH] Bump version and update comment --- lib/grapple/hook.ex | 3 +-- mix.exs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/grapple/hook.ex b/lib/grapple/hook.ex index 023060e..8d63144 100644 --- a/lib/grapple/hook.ex +++ b/lib/grapple/hook.ex @@ -114,8 +114,6 @@ defmodule Grapple.Hook do |> Enum.filter(&(&1.topic == topic)) |> Enum.map(fn webhook -> notify(webhook, body) end) - # TODO: Create a logging service for response info - {:reply, resp_log, {webhooks, stash_pid}} end @@ -198,6 +196,7 @@ defmodule Grapple.Hook do Allows users to define hookable functions that automatically publish to subscribers whenever they are invoked """ + # TODO: Need logging service, no way to check results of hook sending. defmacro defhook(name, do: block) do id = Macro.to_string name diff --git a/mix.exs b/mix.exs index 3b987a6..34c5d9a 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule Grapple.Mixfile do def project do [app: :grapple, - version: "0.1.1", + version: "0.2.0", elixir: "~> 1.3", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod,