Skip to content

Commit

Permalink
version 1.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed May 11, 2022
1 parent 97e5b15 commit 8b10a02
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 4 deletions.
9 changes: 9 additions & 0 deletions docs/api-docs/slack_bolt/app/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,9 @@ <h1 class="title">Module <code>slack_bolt.app.app</code></h1>
# If an end-user posts a message with &#34;Also send to #channel&#34; checked,
# the message event comes with this subtype.
&#34;thread_broadcast&#34;,
# If an end-user posts a message with attached files,
# the message event comes with this subtype.
&#34;file_share&#34;,
),
}
primary_matcher = builtin_matchers.message_event(
Expand Down Expand Up @@ -2410,6 +2413,9 @@ <h2 id="args">Args</h2>
# If an end-user posts a message with &#34;Also send to #channel&#34; checked,
# the message event comes with this subtype.
&#34;thread_broadcast&#34;,
# If an end-user posts a message with attached files,
# the message event comes with this subtype.
&#34;file_share&#34;,
),
}
primary_matcher = builtin_matchers.message_event(
Expand Down Expand Up @@ -3827,6 +3833,9 @@ <h2 id="args">Args</h2>
# If an end-user posts a message with &#34;Also send to #channel&#34; checked,
# the message event comes with this subtype.
&#34;thread_broadcast&#34;,
# If an end-user posts a message with attached files,
# the message event comes with this subtype.
&#34;file_share&#34;,
),
}
primary_matcher = builtin_matchers.message_event(
Expand Down
9 changes: 9 additions & 0 deletions docs/api-docs/slack_bolt/app/async_app.html
Original file line number Diff line number Diff line change
Expand Up @@ -922,6 +922,9 @@ <h1 class="title">Module <code>slack_bolt.app.async_app</code></h1>
# If an end-user posts a message with &#34;Also send to #channel&#34; checked,
# the message event comes with this subtype.
&#34;thread_broadcast&#34;,
# If an end-user posts a message with attached files,
# the message event comes with this subtype.
&#34;file_share&#34;,
),
}
primary_matcher = builtin_matchers.message_event(
Expand Down Expand Up @@ -2389,6 +2392,9 @@ <h2 id="args">Args</h2>
# If an end-user posts a message with &#34;Also send to #channel&#34; checked,
# the message event comes with this subtype.
&#34;thread_broadcast&#34;,
# If an end-user posts a message with attached files,
# the message event comes with this subtype.
&#34;file_share&#34;,
),
}
primary_matcher = builtin_matchers.message_event(
Expand Down Expand Up @@ -3831,6 +3837,9 @@ <h2 id="args">Args</h2>
# If an end-user posts a message with &#34;Also send to #channel&#34; checked,
# the message event comes with this subtype.
&#34;thread_broadcast&#34;,
# If an end-user posts a message with attached files,
# the message event comes with this subtype.
&#34;file_share&#34;,
),
}
primary_matcher = builtin_matchers.message_event(
Expand Down
5 changes: 3 additions & 2 deletions docs/api-docs/slack_bolt/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,16 @@ <h1 class="title">Module <code>slack_bolt.app</code></h1>
<summary>
<span>Expand source code</span>
</summary>
<pre><code class="python">&#34;&#34;&#34;Application interface in Bolt.
<pre><code class="python"># flake8: noqa
&#34;&#34;&#34;Application interface in Bolt.

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

# Don&#39;t add async module imports here
from .app import App # noqa: F401 type: ignore</code></pre>
from .app import App # type: ignore</code></pre>
</details>
</section>
<section>
Expand Down
2 changes: 1 addition & 1 deletion docs/api-docs/slack_bolt/version.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h1 class="title">Module <code>slack_bolt.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-bolt/&#34;&#34;&#34;
__version__ = &#34;1.13.1&#34;</code></pre>
__version__ = &#34;1.13.2&#34;</code></pre>
</details>
</section>
<section>
Expand Down
2 changes: 1 addition & 1 deletion slack_bolt/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-bolt/"""
__version__ = "1.13.1"
__version__ = "1.13.2"

0 comments on commit 8b10a02

Please sign in to comment.