Skip to content

Commit a58efbe

Browse files
authored
Merge pull request #68 from stackql/feature/ja-updates
updated README
2 parents e308fb7 + dd32ddc commit a58efbe

File tree

2 files changed

+8
-31
lines changed

2 files changed

+8
-31
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.8.7 (2025-10-14)
4+
5+
- Added tab completion
6+
- Added enhanced logging decorators
7+
38
## 1.8.6 (2025-07-22)
49

510
- Added support for inline `sql` for `command` and `query` resource types

README.md

Lines changed: 3 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -241,38 +241,10 @@ stackql-deploy --help
241241
242242
**stackql-deploy** supports tab completion for commands and options across multiple shells. To enable tab completion:
243243
244-
#### Bash
245-
Add the following to your `~/.bashrc`:
246244
```bash
247-
eval "$(_STACKQL_DEPLOY_COMPLETE=bash_source stackql-deploy)"
248-
```
249-
250-
#### Zsh
251-
Add the following to your `~/.zshrc`:
252-
```bash
253-
eval "$(_STACKQL_DEPLOY_COMPLETE=zsh_source stackql-deploy)"
254-
```
255-
256-
#### Fish
257-
Add the following to your `~/.config/fish/config.fish`:
258-
```bash
259-
eval (env _STACKQL_DEPLOY_COMPLETE=fish_source stackql-deploy)
260-
```
261-
262-
#### PowerShell
263-
Add the following to your PowerShell profile:
264-
```powershell
265-
Invoke-Expression (& stackql-deploy completion powershell)
266-
```
267-
268-
> **Note:** After adding the completion configuration to your shell's configuration file, restart your terminal or source the configuration file for the changes to take effect.
269-
270-
You can also generate shell-specific completion scripts using:
271-
```bash
272-
stackql-deploy completion bash # for bash
273-
stackql-deploy completion zsh # for zsh
274-
stackql-deploy completion fish # for fish
275-
stackql-deploy completion powershell # for PowerShell
245+
eval "$(stackql-deploy completion bash)" # activate now
246+
stackql-deploy completion bash --install # install permanently
247+
stackql-deploy completion # auto-detect shell
276248
```
277249
278250
## Building and Testing Locally

0 commit comments

Comments
 (0)