Skip to content

Commit b724d81

Browse files
authored
chore: release slack-cli v3.10.0 (#280)
1 parent ddc3a83 commit b724d81

File tree

5 files changed

+60
-7
lines changed

5 files changed

+60
-7
lines changed

docs/guides/installing-the-slack-cli-for-mac-and-linux.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ Manual installation allows you to customize certain paths used when installing t
9999

100100
**2\. Download the** `slack` **CLI installer for your environment.**
101101

102-
🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.9.2_macOS_arm64.tar.gz)
102+
🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.10.0_macOS_arm64.tar.gz)
103103

104-
🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.9.2_macOS_amd64.tar.gz)
104+
🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.10.0_macOS_amd64.tar.gz)
105105

106-
🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.9.2_linux_64-bit.tar.gz)
106+
🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.10.0_linux_64-bit.tar.gz)
107107

108108
**3\. Add the** `slack` **CLI to your path.**
109109

@@ -121,7 +121,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change
121121

122122
```sh
123123
$ slack version
124-
Using slack v3.9.2
124+
Using slack v3.10.0
125125
```
126126

127127
</TabItem>

docs/guides/installing-the-slack-cli-for-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Manual installation allows you to customize certain paths used when installing t
8888

8989
**2\. Download the** `slack` **CLI installer for your environment.**
9090

91-
<ts-icon class="ts_icon_windows"></ts-icon> &nbsp; <a href="https://downloads.slack-edge.com/slack-cli/slack_cli_3.9.2_windows_64-bit.zip"><strong>Windows (.zip)</strong></a>
91+
<ts-icon class="ts_icon_windows"></ts-icon> &nbsp; <a href="https://downloads.slack-edge.com/slack-cli/slack_cli_3.10.0_windows_64-bit.zip"><strong>Windows (.zip)</strong></a>
9292

9393
**3\. Add the** `slack` **CLI to your path.**
9494

@@ -104,7 +104,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change
104104

105105
```pwsh
106106
$ slack version
107-
Using slack v3.9.2
107+
Using slack v3.10.0
108108
```
109109

110110
</TabItem>

docs/reference/commands/slack_app.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ $ slack app link # Link an existing app to the project
3838
$ slack app list # List all teams with the app installed
3939
$ slack app settings # Open app settings in a web browser
4040
$ slack app uninstall # Uninstall an app from a team
41+
$ slack app unlink # Remove a linked app from the project
4142
$ slack app delete # Delete an app and app info from a team
4243
```
4344

@@ -50,4 +51,5 @@ $ slack app delete # Delete an app and app info from a team
5051
* [slack app list](slack_app_list) - List teams with the app installed
5152
* [slack app settings](slack_app_settings) - Open app settings for configurations
5253
* [slack app uninstall](slack_app_uninstall) - Uninstall the app from a team
54+
* [slack app unlink](slack_app_unlink) - Remove a linked app from the project
5355

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# `slack app unlink`
2+
3+
Remove a linked app from the project
4+
5+
## Description
6+
7+
Unlink removes an existing app from the project.
8+
9+
This command removes a saved app ID from the files of a project without deleting
10+
the app from Slack.
11+
12+
```
13+
slack app unlink [flags]
14+
```
15+
16+
## Flags
17+
18+
```
19+
-h, --help help for unlink
20+
```
21+
22+
## Global flags
23+
24+
```
25+
-a, --app string use a specific app ID or environment
26+
--config-dir string use a custom path for system config directory
27+
-e, --experiment strings use the experiment(s) in the command
28+
-f, --force ignore warnings and continue executing command
29+
--no-color remove styles and formatting from outputs
30+
-s, --skip-update skip checking for latest version of CLI
31+
-w, --team string select workspace or organization by team name or ID
32+
--token string set the access token associated with a team
33+
-v, --verbose print debug logging and additional info
34+
```
35+
36+
## Examples
37+
38+
```
39+
# Remove an existing app from the project
40+
$ slack app unlink
41+
42+
# Remove a specific app without using prompts
43+
$ slack app unlink --app A0123456789
44+
```
45+
46+
## See also
47+
48+
* [slack app](slack_app) - Install, uninstall, and list teams with the app installed
49+

docs/reference/commands/slack_collaborator_add.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ slack collaborator add [email|user_id] [flags]
1313
## Flags
1414

1515
```
16-
-h, --help help for add
16+
-h, --help help for add
17+
-P, --permission-type string collaborator permission type
18+
("owner" or "reader") (default "owner")
1719
```
1820

1921
## Global flags

0 commit comments

Comments
 (0)