Updated versions in docs for v0.19.0 release

This commit is contained in:
Pinny 2022-08-26 20:08:48 +00:00
parent a5ac710831
commit 4441ac0600
2 changed files with 8 additions and 4 deletions

View File

@ -7,8 +7,8 @@ params:
github_url: "https://github.com/vmware-tanzu/pinniped" github_url: "https://github.com/vmware-tanzu/pinniped"
slack_url: "https://go.pinniped.dev/community/slack" slack_url: "https://go.pinniped.dev/community/slack"
community_url: "https://go.pinniped.dev/community" community_url: "https://go.pinniped.dev/community"
latest_version: v0.18.0 latest_version: v0.19.0
latest_codegen_version: 1.24 latest_codegen_version: 1.25
pygmentsCodefences: true pygmentsCodefences: true
pygmentsStyle: "pygments" pygmentsStyle: "pygments"
markup: markup:

View File

@ -33,7 +33,7 @@ To load completions for every new session, execute once:
#### macOS: #### 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. 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 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: To load completions for every new session, execute once:
#### Linux: #### Linux:
@ -139,7 +143,7 @@ To load completions for every new session, execute once:
#### macOS: #### 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. You will need to start a new shell for this setup to take effect.