Skip to content

Commit

Permalink
version 1.15.5
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Nov 17, 2022
1 parent e396b8b commit 365f765
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docs/api-docs/slack_bolt/app/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -1251,6 +1251,7 @@ <h1 class="title">Module <code>slack_bolt.app.app</code></h1>
proxy=self._client.proxy,
headers=self._client.headers,
team_id=req.context.team_id,
retry_handlers=self._client.retry_handlers.copy() if self._client.retry_handlers is not None else None,
)
req.context[&#34;client&#34;] = client_per_request

Expand Down Expand Up @@ -2674,6 +2675,7 @@ <h2 id="args">Args</h2>
proxy=self._client.proxy,
headers=self._client.headers,
team_id=req.context.team_id,
retry_handlers=self._client.retry_handlers.copy() if self._client.retry_handlers is not None else None,
)
req.context[&#34;client&#34;] = client_per_request

Expand Down
6 changes: 6 additions & 0 deletions docs/api-docs/slack_bolt/app/async_app.html
Original file line number Diff line number Diff line change
Expand Up @@ -1287,6 +1287,9 @@ <h1 class="title">Module <code>slack_bolt.app.async_app</code></h1>
trust_env_in_session=self._async_client.trust_env_in_session,
headers=self._async_client.headers,
team_id=req.context.team_id,
retry_handlers=self._async_client.retry_handlers.copy()
if self._async_client.retry_handlers is not None
else None,
)
req.context[&#34;client&#34;] = client_per_request

Expand Down Expand Up @@ -2606,6 +2609,9 @@ <h2 id="args">Args</h2>
trust_env_in_session=self._async_client.trust_env_in_session,
headers=self._async_client.headers,
team_id=req.context.team_id,
retry_handlers=self._async_client.retry_handlers.copy()
if self._async_client.retry_handlers is not None
else None,
)
req.context[&#34;client&#34;] = client_per_request

Expand Down
1 change: 1 addition & 0 deletions docs/api-docs/slack_bolt/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1298,6 +1298,7 @@ <h2 id="args">Args</h2>
proxy=self._client.proxy,
headers=self._client.headers,
team_id=req.context.team_id,
retry_handlers=self._client.retry_handlers.copy() if self._client.retry_handlers is not None else None,
)
req.context[&#34;client&#34;] = client_per_request

Expand Down
3 changes: 3 additions & 0 deletions docs/api-docs/slack_bolt/async_app.html
Original file line number Diff line number Diff line change
Expand Up @@ -1440,6 +1440,9 @@ <h2 id="args">Args</h2>
trust_env_in_session=self._async_client.trust_env_in_session,
headers=self._async_client.headers,
team_id=req.context.team_id,
retry_handlers=self._async_client.retry_handlers.copy()
if self._async_client.retry_handlers is not None
else None,
)
req.context[&#34;client&#34;] = client_per_request

Expand Down
1 change: 1 addition & 0 deletions docs/api-docs/slack_bolt/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1436,6 +1436,7 @@ <h2 id="args">Args</h2>
proxy=self._client.proxy,
headers=self._client.headers,
team_id=req.context.team_id,
retry_handlers=self._client.retry_handlers.copy() if self._client.retry_handlers is not None else None,
)
req.context[&#34;client&#34;] = client_per_request

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.15.4&#34;</code></pre>
__version__ = &#34;1.15.5&#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.15.4"
__version__ = "1.15.5"

0 comments on commit 365f765

Please sign in to comment.