diff --git a/Changes b/Changes index 6ee1321..1e606cc 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,13 @@ Revision history for Perl extension Slack-RTM-Bot {{$NEXT}} +1.15 2022-11-13T06:40:31Z + + - #38 Users -> Members fix + - #40 Use rtm connect api + - #41 fix failed to send direct messages + - #42 Use rtm.connect instead of rtm.start + 1.13 2020-07-05T15:03:42Z - #35 Use conversations.list diff --git a/META.json b/META.json index 4b41efd..b8da64f 100644 --- a/META.json +++ b/META.json @@ -1,10 +1,10 @@ { "abstract" : "This is a perl module helping to create slack bot with Real Time Messaging(RTM) API.", "author" : [ - "Shunsuke Maeda" + "Shunsuke Maeda \r" ], "dynamic_config" : 0, - "generated_by" : "Minilla/v3.1.10, CPAN::Meta::Converter version 2.150010", + "generated_by" : "Minilla/v3.1.20, CPAN::Meta::Converter version 2.150010", "license" : [ "mit" ], @@ -68,21 +68,23 @@ "homepage" : "https://github.com/duck8823/Slack-RTM-Bot", "repository" : { "type" : "git", - "url" : "git://github.com/duck8823/Slack-RTM-Bot.git", + "url" : "https://github.com/duck8823/Slack-RTM-Bot.git", "web" : "https://github.com/duck8823/Slack-RTM-Bot" } }, - "version" : "1.13", + "version" : "1.15", "x_contributors" : [ "Matt Hallacy ", + "Matt Hallacy ", "Mohammad S Anwar ", "Paulo Bu ", - "Shunsuke Maeda ", "Tomas Cohen Arazi ", "dada ", + "kimjackson ", "makamaka ", + "poptix ", "shmaeda " ], - "x_serialization_backend" : "JSON::PP version 4.04", + "x_serialization_backend" : "JSON::PP version 4.06", "x_static_install" : 1 } diff --git a/lib/Slack/RTM/Bot.pm b/lib/Slack/RTM/Bot.pm index e7dffd6..cecd617 100644 --- a/lib/Slack/RTM/Bot.pm +++ b/lib/Slack/RTM/Bot.pm @@ -9,7 +9,7 @@ use POSIX qw/sys_wait_h/; use JSON; use Slack::RTM::Bot::Client; -our $VERSION = "1.13"; +our $VERSION = "1.15"; pipe(READH, WRITEH); select(WRITEH);$|=1;