Skip to content

Commit 0cda62a

Browse files
committed
version 1.2.0rc1
1 parent e5800a8 commit 0cda62a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

scripts/uninstall_all.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/bin/bash
22

3-
pip freeze | grep -v "^-e" | xargs pip uninstall -y
3+
pip uninstall -y slack-bolt && \
4+
pip freeze | grep -v "^-e" | xargs pip uninstall -y

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.0b7,<3.3",],
37+
install_requires=["slack_sdk>=3.2.0rc1,<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.0b4 "
1+
__version__ = "1.2.0rc1"

0 commit comments

Comments
 (0)