Skip to content

Commit 1c57dff

Browse files
committed
version 1.2.0
1 parent 5cb3162 commit 1c57dff

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/_basic/socket_mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ order: 16
66
---
77

88
<div class="section-content">
9-
With the introduction of [Socket Mode](https://api.slack.com/socket-mode), Bolt for Python introduced support in version `1.2.0`. With Socket Mode, instead of creating a server with endpoints that Slack sends payloads too, the app will instead connect to Slack via a WebSocket connection and receive data from Slack over the socket connection. Make sure to enable Socket Mode in your app configuration settings.
9+
With the introduction of [Socket Mode](https://api.slack.com/apis/connections/socket), Bolt for Python introduced support in version `1.2.0`. With Socket Mode, instead of creating a server with endpoints that Slack sends payloads too, the app will instead connect to Slack via a WebSocket connection and receive data from Slack over the socket connection. Make sure to enable Socket Mode in your app configuration settings.
1010

1111
To use the Socket Mode, add `SLACK_APP_TOKEN` as an environment variable. You can get your App Token in your app configuration settings under the **Basic Information** section.
1212
</div>

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
exclude=["examples", "integration_tests", "tests", "tests.*",]
3535
),
3636
include_package_data=True, # MANIFEST.in
37-
install_requires=["slack_sdk>=3.2.0rc2,<3.3",],
37+
install_requires=["slack_sdk>=3.2.0,<3.3",],
3838
setup_requires=["pytest-runner==5.2"],
3939
tests_require=test_dependencies,
4040
test_suite="tests",

slack_bolt/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.2.0rc2"
1+
__version__ = "1.2.0"

0 commit comments

Comments
 (0)