Skip to content

Commit 8e9df44

Browse files
committed
version 3.11.2
1 parent c1c8a3b commit 8e9df44

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

docs/api-docs/slack_sdk/socket_mode/websockets/index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ <h1 class="title">Module <code>slack_sdk.socket_mode.websockets</code></h1>
4848

4949
import websockets
5050
from websockets.exceptions import WebSocketException
51-
from websockets.legacy.client import WebSocketClientProtocol
51+
52+
# To keep compatibility with websockets 8.x, we use this import over .legacy.client
53+
from websockets import WebSocketClientProtocol
5254

5355
from slack_sdk.socket_mode.async_client import AsyncBaseSocketModeClient
5456
from slack_sdk.socket_mode.async_listeners import (

docs/api-docs/slack_sdk/version.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h1 class="title">Module <code>slack_sdk.version</code></h1>
2828
<span>Expand source code</span>
2929
</summary>
3030
<pre><code class="python">&#34;&#34;&#34;Check the latest version at https://pypi.org/project/slack-sdk/&#34;&#34;&#34;
31-
__version__ = &#34;3.11.1&#34;</code></pre>
31+
__version__ = &#34;3.11.2&#34;</code></pre>
3232
</details>
3333
</section>
3434
<section>

slack_sdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Check the latest version at https://pypi.org/project/slack-sdk/"""
2-
__version__ = "3.11.1"
2+
__version__ = "3.11.2"

0 commit comments

Comments
 (0)