From: Matt Mullins Date: Sun, 5 May 2013 07:23:56 +0000 (-0700) Subject: Create intermediate release. X-Git-Tag: v9.5 X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=082bd88460b2c5f46a6cc8f816c9f55b2c5729e0;p=erlbot.git Create intermediate release. This release only contains the changes needed to add a return value to amqp_bot_listener:listen_for_events. This must happen strictly /before/ the changes that create/destroy new irc_amqp_listener processes, so that we can forcibly keep the pattern matching in sync with the return value. --- diff --git a/bot.rel b/bot.rel index 097dbea..74d76ce 100644 --- a/bot.rel +++ b/bot.rel @@ -1,4 +1,4 @@ -{release, {"erlbot", "9"}, +{release, {"erlbot", "9.5"}, {erts, "5.8.3"}, [{kernel, "2.14.5"}, {stdlib, "1.17.5"}, @@ -6,6 +6,6 @@ {rabbit_common, "0.0.0"}, {amqp_client, "0.0.0"}, {core, "2"}, - {amqp, "1"}, - {irc, "8"}] + {amqp, "2"}, + {irc, "9"}] }. diff --git a/irc/irc.app b/irc/irc.app index 9dbec0b..bd11c08 100644 --- a/irc/irc.app +++ b/irc/irc.app @@ -1,6 +1,6 @@ {application, irc, [{description, "IRC protocol application"}, - {vsn, "8"}, + {vsn, "9"}, {modules, [irc_util, irc_app, irc_sup, irc_net_sup, irc_conn, irc_object_sup, irc_amqp_listener, irc_command]}, {registered, [irc_sup, irc_dummy]}, diff --git a/irc/irc.appup b/irc/irc.appup index 5bb871b..f9ad801 100644 --- a/irc/irc.appup +++ b/irc/irc.appup @@ -1,12 +1,8 @@ -{"8", - [{"7", - [{update, irc_amqp_listener}, - {update, irc_command}, - {update, irc_conn, [irc_amqp_listener, irc_command]} +{"9", + [{"8", + [{update, irc_amqp_listener, {advanced, ok}, [amqp_bot_listener]} ]}], - [{"7", - [{update, irc_conn, [irc_amqp_listener, irc_command]}, - {update, irc_command}, - {update, irc_amqp_listener} + [{"8", + [{update, irc_amqp_listener, {advanced, ok}, [amqp_bot_listener]} ]}] }.