diff --git a/CHANGELOG.md b/CHANGELOG.md index bcd40c4..5a32392 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.8.7 (2025-10-14) + +- Added tab completion +- Added enhanced logging decorators + ## 1.8.6 (2025-07-22) - Added support for inline `sql` for `command` and `query` resource types diff --git a/README.md b/README.md index 90b081a..2fb8d65 100644 --- a/README.md +++ b/README.md @@ -241,38 +241,10 @@ stackql-deploy --help **stackql-deploy** supports tab completion for commands and options across multiple shells. To enable tab completion: -#### Bash -Add the following to your `~/.bashrc`: ```bash -eval "$(_STACKQL_DEPLOY_COMPLETE=bash_source stackql-deploy)" -``` - -#### Zsh -Add the following to your `~/.zshrc`: -```bash -eval "$(_STACKQL_DEPLOY_COMPLETE=zsh_source stackql-deploy)" -``` - -#### Fish -Add the following to your `~/.config/fish/config.fish`: -```bash -eval (env _STACKQL_DEPLOY_COMPLETE=fish_source stackql-deploy) -``` - -#### PowerShell -Add the following to your PowerShell profile: -```powershell -Invoke-Expression (& stackql-deploy completion powershell) -``` - -> **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. - -You can also generate shell-specific completion scripts using: -```bash -stackql-deploy completion bash # for bash -stackql-deploy completion zsh # for zsh -stackql-deploy completion fish # for fish -stackql-deploy completion powershell # for PowerShell +eval "$(stackql-deploy completion bash)" # activate now +stackql-deploy completion bash --install # install permanently +stackql-deploy completion # auto-detect shell ``` ## Building and Testing Locally