Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 1.15.
Browse files Browse the repository at this point in the history
Changelog diff is:

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
  • Loading branch information
duck8823 committed Nov 13, 2022
1 parent 8974782 commit 606bd0a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
7 changes: 7 additions & 0 deletions Changes
Expand Up @@ -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
Expand Down
14 changes: 8 additions & 6 deletions 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 <duck8823@gmail.com>\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"
],
Expand Down Expand Up @@ -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 <mhallacy+github@haproxy.com>",
"Matt Hallacy <mhallacy@reflected.net>",
"Mohammad S Anwar <mohammad.anwar@yahoo.com>",
"Paulo Bu <pbu_98@yahoo.com>",
"Shunsuke Maeda <duck8823@gmail.com>",
"Tomas Cohen Arazi <tomascohen@theke.io>",
"dada <dada@perl.it>",
"kimjackson <kim.jackson@gmail.com>",
"makamaka <makamaka.donzoko@gmail.com>",
"poptix <poptix@poptix.net>",
"shmaeda <shmaeda@nig.ac.jp>"
],
"x_serialization_backend" : "JSON::PP version 4.04",
"x_serialization_backend" : "JSON::PP version 4.06",
"x_static_install" : 1
}
2 changes: 1 addition & 1 deletion lib/Slack/RTM/Bot.pm
Expand Up @@ -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;
Expand Down

0 comments on commit 606bd0a

Please sign in to comment.