Skip to content

Commit

Permalink
version 3.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Jun 22, 2022
1 parent 0554d46 commit a72b5e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/api-docs/slack_sdk/socket_mode/builtin/internals.html
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ <h1 class="title">Module <code>slack_sdk.socket_mode.builtin.internals</code></h
elif current_data_length == 127:
if len(remaining_bytes) &lt; 10:
remaining_bytes += receive(1024)
current_data_length = struct.unpack(&#34;!H&#34;, bytes(remaining_bytes[2:10]))[0]
current_data_length = struct.unpack(&#34;!Q&#34;, bytes(remaining_bytes[2:10]))[0]
idx_after_length_part = 10

current_header = FrameHeader(
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.17.1&#34;</code></pre>
__version__ = &#34;3.17.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.17.1"
__version__ = "3.17.2"

0 comments on commit a72b5e4

Please sign in to comment.