Skip to content

Commit

Permalink
version 3.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Sep 21, 2021
1 parent c1c8a3b commit 8e9df44
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion docs/api-docs/slack_sdk/socket_mode/websockets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ <h1 class="title">Module <code>slack_sdk.socket_mode.websockets</code></h1>

import websockets
from websockets.exceptions import WebSocketException
from websockets.legacy.client import WebSocketClientProtocol

# To keep compatibility with websockets 8.x, we use this import over .legacy.client
from websockets import WebSocketClientProtocol

from slack_sdk.socket_mode.async_client import AsyncBaseSocketModeClient
from slack_sdk.socket_mode.async_listeners import (
Expand Down
2 changes: 1 addition & 1 deletion docs/api-docs/slack_sdk/version.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h1 class="title">Module <code>slack_sdk.version</code></h1>
<span>Expand source code</span>
</summary>
<pre><code class="python">&#34;&#34;&#34;Check the latest version at https://pypi.org/project/slack-sdk/&#34;&#34;&#34;
__version__ = &#34;3.11.1&#34;</code></pre>
__version__ = &#34;3.11.2&#34;</code></pre>
</details>
</section>
<section>
Expand Down
2 changes: 1 addition & 1 deletion slack_sdk/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Check the latest version at https://pypi.org/project/slack-sdk/"""
__version__ = "3.11.1"
__version__ = "3.11.2"

0 comments on commit 8e9df44

Please sign in to comment.