Create intermediate release. v9.5
authorMatt Mullins <mmullins@mmlx.us>
Sun, 5 May 2013 07:23:56 +0000 (00:23 -0700)
committerMatt Mullins <mmullins@mmlx.us>
Sun, 5 May 2013 07:29:13 +0000 (00:29 -0700)
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.

bot.rel
irc/irc.app
irc/irc.appup

diff --git a/bot.rel b/bot.rel
index 097dbea..74d76ce 100644 (file)
--- 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"}]
 }.
index 9dbec0b..bd11c08 100644 (file)
@@ -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]},
index 5bb871b..f9ad801 100644 (file)
@@ -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]}
    ]}]
 }.