From c54a76a3f414ac5cee0a132eecea869ed45c418d Mon Sep 17 00:00:00 2001 From: chrnorm Date: Thu, 18 Apr 2024 06:21:09 +0000 Subject: [PATCH] Update report --- docs/granted/getting-started.mdx | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/granted/getting-started.mdx b/docs/granted/getting-started.mdx index cbde05d..ba93e28 100644 --- a/docs/granted/getting-started.mdx +++ b/docs/granted/getting-started.mdx @@ -98,21 +98,21 @@ brew install granted ## Reverting to an older version of Granted -If you need to revert to an older version of Granted, you can manually downgrade using the following steps. Replace "0.20.6" with the specific version you want to install. +If you need to revert to an older version of Granted, you can manually downgrade using the following steps. Replace "0.23.1" with the specific version you want to install. #### For Intel (x86_64 architecture): ```bash -curl -OL https://releases.commonfate.io/granted/v0.20.6/granted_0.20.6_darwin_x86_64.tar.gz -sudo tar -zxvf ./granted_0.20.6_darwin_x86_64.tar.gz -C /usr/local/bin/ +curl -OL https://releases.commonfate.io/granted/v0.23.1/granted_0.23.1_darwin_x86_64.tar.gz +sudo tar -zxvf ./granted_0.23.1_darwin_x86_64.tar.gz -C /usr/local/bin/ ln -s /usr/local/bin/granted /usr/local/bin/assumego ``` #### For ARM (arm64 architecture): ```bash -curl -OL https://releases.commonfate.io/granted/v0.20.6/granted_0.20.6_darwin_arm64.tar.gz -sudo tar -zxvf ./granted_0.20.6_darwin_arm64.tar.gz -C /usr/local/bin/ +curl -OL https://releases.commonfate.io/granted/v0.23.1/granted_0.23.1_darwin_arm64.tar.gz +sudo tar -zxvf ./granted_0.23.1_darwin_arm64.tar.gz -C /usr/local/bin/ ln -s /usr/local/bin/granted /usr/local/bin/assumego ``` @@ -136,8 +136,8 @@ values={[ ``` -curl -OL releases.commonfate.io/granted/v0.20.6/granted_0.20.6_linux_x86_64.tar.gz -sudo tar -zxvf ./granted_0.20.6_linux_x86_64.tar.gz -C /usr/local/bin/ +curl -OL releases.commonfate.io/granted/v0.23.1/granted_0.23.1_linux_x86_64.tar.gz +sudo tar -zxvf ./granted_0.23.1_linux_x86_64.tar.gz -C /usr/local/bin/ ``` @@ -146,8 +146,8 @@ sudo tar -zxvf ./granted_0.20.6_linux_x86_64.tar.gz -C /usr/local/bin/ ``` -curl -OL releases.commonfate.io/granted/v0.20.6/granted_0.20.6_linux_arm64.tar.gz -sudo tar -zxvf ./granted_0.20.6_linux_arm64.tar.gz -C /usr/local/bin/ +curl -OL releases.commonfate.io/granted/v0.23.1/granted_0.23.1_linux_arm64.tar.gz +sudo tar -zxvf ./granted_0.23.1_linux_arm64.tar.gz -C /usr/local/bin/ ``` @@ -155,8 +155,8 @@ sudo tar -zxvf ./granted_0.20.6_linux_arm64.tar.gz -C /usr/local/bin/ ``` -curl -OL releases.commonfate.io/granted/v0.20.6/granted_0.20.6_linux_i386.tar.gz -sudo tar -zxvf ./granted_0.20.6_linux_i386.tar.gz -C /usr/local/bin/ +curl -OL releases.commonfate.io/granted/v0.23.1/granted_0.23.1_linux_i386.tar.gz +sudo tar -zxvf ./granted_0.23.1_linux_i386.tar.gz -C /usr/local/bin/ ``` @@ -169,11 +169,11 @@ sudo tar -zxvf ./granted_0.20.6_linux_i386.tar.gz -C /usr/local/bin/ First, download the zip archive of Granted which matches your system's architecture. You can find your architecture by viewing your system properties in the Control Panel. -[Granted for Windows x86_64](https://releases.commonfate.io/granted/v0.20.6/granted_0.20.6_windows_x86_64.zip) +[Granted for Windows x86_64](https://releases.commonfate.io/granted/v0.23.1/granted_0.23.1_windows_x86_64.zip) -[Granted for Windows arm64](https://releases.commonfate.io/granted/v0.20.6/granted_0.20.6_windows_arm64.zip) +[Granted for Windows arm64](https://releases.commonfate.io/granted/v0.23.1/granted_0.23.1_windows_arm64.zip) -[Granted for Windows i386](https://releases.commonfate.io/granted/v0.20.6/granted_0.20.6_windows_i386.zip) +[Granted for Windows i386](https://releases.commonfate.io/granted/v0.23.1/granted_0.23.1_windows_i386.zip) After downloading Granted, unzip the package. Granted runs as two binaries, `assume` and `granted`. Any other files in the package can be removed and Granted will still function. @@ -197,7 +197,7 @@ To verify that the installation has succeeded, print the version of Granted by r ➜ granted -v -Granted v0.20.6 +Granted v0.23.1 ```