Skip to content

Commit a72b5e4

Browse files
committed
version 3.17.2
1 parent 0554d46 commit a72b5e4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/api-docs/slack_sdk/socket_mode/builtin/internals.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ <h1 class="title">Module <code>slack_sdk.socket_mode.builtin.internals</code></h
306306
elif current_data_length == 127:
307307
if len(remaining_bytes) &lt; 10:
308308
remaining_bytes += receive(1024)
309-
current_data_length = struct.unpack(&#34;!H&#34;, bytes(remaining_bytes[2:10]))[0]
309+
current_data_length = struct.unpack(&#34;!Q&#34;, bytes(remaining_bytes[2:10]))[0]
310310
idx_after_length_part = 10
311311

312312
current_header = FrameHeader(

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.17.1&#34;</code></pre>
31+
__version__ = &#34;3.17.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.17.1"
2+
__version__ = "3.17.2"

0 commit comments

Comments
 (0)