Skip to content

Commit 8b10a02

Browse files
committed
version 1.13.2
1 parent 97e5b15 commit 8b10a02

File tree

5 files changed

+23
-4
lines changed

5 files changed

+23
-4
lines changed

docs/api-docs/slack_bolt/app/app.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -865,6 +865,9 @@ <h1 class="title">Module <code>slack_bolt.app.app</code></h1>
865865
# If an end-user posts a message with &#34;Also send to #channel&#34; checked,
866866
# the message event comes with this subtype.
867867
&#34;thread_broadcast&#34;,
868+
# If an end-user posts a message with attached files,
869+
# the message event comes with this subtype.
870+
&#34;file_share&#34;,
868871
),
869872
}
870873
primary_matcher = builtin_matchers.message_event(
@@ -2410,6 +2413,9 @@ <h2 id="args">Args</h2>
24102413
# If an end-user posts a message with &#34;Also send to #channel&#34; checked,
24112414
# the message event comes with this subtype.
24122415
&#34;thread_broadcast&#34;,
2416+
# If an end-user posts a message with attached files,
2417+
# the message event comes with this subtype.
2418+
&#34;file_share&#34;,
24132419
),
24142420
}
24152421
primary_matcher = builtin_matchers.message_event(
@@ -3827,6 +3833,9 @@ <h2 id="args">Args</h2>
38273833
# If an end-user posts a message with &#34;Also send to #channel&#34; checked,
38283834
# the message event comes with this subtype.
38293835
&#34;thread_broadcast&#34;,
3836+
# If an end-user posts a message with attached files,
3837+
# the message event comes with this subtype.
3838+
&#34;file_share&#34;,
38303839
),
38313840
}
38323841
primary_matcher = builtin_matchers.message_event(

docs/api-docs/slack_bolt/app/async_app.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -922,6 +922,9 @@ <h1 class="title">Module <code>slack_bolt.app.async_app</code></h1>
922922
# If an end-user posts a message with &#34;Also send to #channel&#34; checked,
923923
# the message event comes with this subtype.
924924
&#34;thread_broadcast&#34;,
925+
# If an end-user posts a message with attached files,
926+
# the message event comes with this subtype.
927+
&#34;file_share&#34;,
925928
),
926929
}
927930
primary_matcher = builtin_matchers.message_event(
@@ -2389,6 +2392,9 @@ <h2 id="args">Args</h2>
23892392
# If an end-user posts a message with &#34;Also send to #channel&#34; checked,
23902393
# the message event comes with this subtype.
23912394
&#34;thread_broadcast&#34;,
2395+
# If an end-user posts a message with attached files,
2396+
# the message event comes with this subtype.
2397+
&#34;file_share&#34;,
23922398
),
23932399
}
23942400
primary_matcher = builtin_matchers.message_event(
@@ -3831,6 +3837,9 @@ <h2 id="args">Args</h2>
38313837
# If an end-user posts a message with &#34;Also send to #channel&#34; checked,
38323838
# the message event comes with this subtype.
38333839
&#34;thread_broadcast&#34;,
3840+
# If an end-user posts a message with attached files,
3841+
# the message event comes with this subtype.
3842+
&#34;file_share&#34;,
38343843
),
38353844
}
38363845
primary_matcher = builtin_matchers.message_event(

docs/api-docs/slack_bolt/app/index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,16 @@ <h1 class="title">Module <code>slack_bolt.app</code></h1>
3030
<summary>
3131
<span>Expand source code</span>
3232
</summary>
33-
<pre><code class="python">&#34;&#34;&#34;Application interface in Bolt.
33+
<pre><code class="python"># flake8: noqa
34+
&#34;&#34;&#34;Application interface in Bolt.
3435

3536
For most use cases, we recommend using `slack_bolt.app.app`.
3637
If you already have knowledge about asyncio and prefer the programming model,
3738
you can use `slack_bolt.app.async_app` for building async apps.\
3839
&#34;&#34;&#34;
3940

4041
# Don&#39;t add async module imports here
41-
from .app import App # noqa: F401 type: ignore</code></pre>
42+
from .app import App # type: ignore</code></pre>
4243
</details>
4344
</section>
4445
<section>

docs/api-docs/slack_bolt/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_bolt.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-bolt/&#34;&#34;&#34;
31-
__version__ = &#34;1.13.1&#34;</code></pre>
31+
__version__ = &#34;1.13.2&#34;</code></pre>
3232
</details>
3333
</section>
3434
<section>

slack_bolt/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-bolt/"""
2-
__version__ = "1.13.1"
2+
__version__ = "1.13.2"

0 commit comments

Comments
 (0)