Skip to content

Commit

Permalink
Merge pull request #223 from entertainyou/master
Browse files Browse the repository at this point in the history
Set default for bots,channels,groups,users,ims state
  • Loading branch information
acconrad authored May 27, 2020
2 parents 0f4e969 + f75139d commit a43c7b7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def application do
end

def deps do
[{:slack, "~> 0.23.2"}]
[{:slack, "~> 0.23.3"}]
end
```

Expand Down
10 changes: 5 additions & 5 deletions lib/slack/state.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ defmodule Slack.State do
:token,
:me,
:team,
:bots,
:channels,
:groups,
:users,
:ims
bots: %{},
channels: %{},
groups: %{},
users: %{},
ims: %{}
]

@doc """
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Slack.Mixfile do
def project do
[
app: :slack,
version: "0.23.2",
version: "0.23.3",
elixir: "~> 1.7",
elixirc_paths: elixirc_paths(Mix.env()),
name: "Slack",
Expand Down

0 comments on commit a43c7b7

Please sign in to comment.