From: Matt Mullins Date: Sun, 28 Aug 2011 20:00:02 +0000 (-0500) Subject: Version bump, added AMQP app to the release file X-Git-Tag: v5~20 X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=d46a3f35ba1ec480210d4cb02ff009e1e73d852e;p=erlbot.git Version bump, added AMQP app to the release file --- diff --git a/bot.rel b/bot.rel index 6409fc3..37f27cc 100644 --- a/bot.rel +++ b/bot.rel @@ -1,8 +1,9 @@ -{release, {"erlbot", "4"}, +{release, {"erlbot", "5"}, {erts, "5.8.3"}, [{kernel, "2.14.3"}, {stdlib, "1.17.3"}, {sasl, "2.1.9.3"}, {core, "2"}, - {irc, "3"}] + {amqp, "1"}, + {irc, "4"}] }. diff --git a/ebin/erlbot.app b/ebin/erlbot.app deleted file mode 100644 index b293147..0000000 --- a/ebin/erlbot.app +++ /dev/null @@ -1,3 +0,0 @@ -{application, erlbot, - [{mod, {erlbot, []}} - ]}. diff --git a/irc/irc.app b/irc/irc.app index 2a1ff2c..41d9d0a 100644 --- a/irc/irc.app +++ b/irc/irc.app @@ -1,6 +1,6 @@ {application, irc, [{description, "IRC protocol application"}, - {vsn, "3"}, + {vsn, "4"}, {modules, [irc_util, irc_app, irc_sup, irc_net_sup, irc_conn]}, {registered, [irc_sup]}, {applications, [core, amqp]},