Skip to content

Commit a43c7b7

Browse files
authored
Merge pull request #223 from entertainyou/master
Set default for bots,channels,groups,users,ims state
2 parents 0f4e969 + f75139d commit a43c7b7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def application do
2424
end
2525

2626
def deps do
27-
[{:slack, "~> 0.23.2"}]
27+
[{:slack, "~> 0.23.3"}]
2828
end
2929
```
3030

lib/slack/state.ex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ defmodule Slack.State do
2020
:token,
2121
:me,
2222
:team,
23-
:bots,
24-
:channels,
25-
:groups,
26-
:users,
27-
:ims
23+
bots: %{},
24+
channels: %{},
25+
groups: %{},
26+
users: %{},
27+
ims: %{}
2828
]
2929

3030
@doc """

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule Slack.Mixfile do
44
def project do
55
[
66
app: :slack,
7-
version: "0.23.2",
7+
version: "0.23.3",
88
elixir: "~> 1.7",
99
elixirc_paths: elixirc_paths(Mix.env()),
1010
name: "Slack",

0 commit comments

Comments
 (0)