From 4441ac0600b0f949cfc0dc8f176ac308d9431ca2 Mon Sep 17 00:00:00 2001 From: Pinny Date: Fri, 26 Aug 2022 20:08:48 +0000 Subject: [PATCH] Updated versions in docs for v0.19.0 release --- site/config.yaml | 4 ++-- site/content/docs/reference/cli.md | 8 ++++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/site/config.yaml b/site/config.yaml index 493ab16c..2c37f5ba 100644 --- a/site/config.yaml +++ b/site/config.yaml @@ -7,8 +7,8 @@ params: github_url: "https://github.com/vmware-tanzu/pinniped" slack_url: "https://go.pinniped.dev/community/slack" community_url: "https://go.pinniped.dev/community" - latest_version: v0.18.0 - latest_codegen_version: 1.24 + latest_version: v0.19.0 + latest_codegen_version: 1.25 pygmentsCodefences: true pygmentsStyle: "pygments" markup: diff --git a/site/content/docs/reference/cli.md b/site/content/docs/reference/cli.md index df995f15..801a28dd 100644 --- a/site/content/docs/reference/cli.md +++ b/site/content/docs/reference/cli.md @@ -33,7 +33,7 @@ To load completions for every new session, execute once: #### macOS: - pinniped completion bash > /usr/local/etc/bash_completion.d/pinniped + pinniped completion bash > $(brew --prefix)/etc/bash_completion.d/pinniped You will need to start a new shell for this setup to take effect. @@ -131,6 +131,10 @@ to enable it. You can execute the following once: echo "autoload -U compinit; compinit" >> ~/.zshrc +To load completions in your current shell session: + + source <(pinniped completion zsh); compdef _pinniped pinniped + To load completions for every new session, execute once: #### Linux: @@ -139,7 +143,7 @@ To load completions for every new session, execute once: #### macOS: - pinniped completion zsh > /usr/local/share/zsh/site-functions/_pinniped + pinniped completion zsh > $(brew --prefix)/share/zsh/site-functions/_pinniped You will need to start a new shell for this setup to take effect.