From f60b1968c474acce1989cd3518017417ab785c5c Mon Sep 17 00:00:00 2001 From: Common Fate Release Bot <99908352+commonfatereleasebot@users.noreply.github.com> Date: Mon, 6 Nov 2023 15:25:28 +0800 Subject: [PATCH] Update report (#298) Co-authored-by: JoshuaWilkes --- 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 b3c8377..08ea694 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.19.2" 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.20.0" with the specific version you want to install. #### For Intel (x86_64 architecture): ```bash -curl -OL https://releases.commonfate.io/granted/v0.19.2/granted_0.19.2_darwin_x86_64.tar.gz -sudo tar -zxvf ./granted_0.19.2_darwin_x86_64.tar.gz -C /usr/local/bin/ +curl -OL https://releases.commonfate.io/granted/v0.20.0/granted_0.20.0_darwin_x86_64.tar.gz +sudo tar -zxvf ./granted_0.20.0_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.19.2/granted_0.19.2_darwin_arm64.tar.gz -sudo tar -zxvf ./granted_0.19.2_darwin_arm64.tar.gz -C /usr/local/bin/ +curl -OL https://releases.commonfate.io/granted/v0.20.0/granted_0.20.0_darwin_arm64.tar.gz +sudo tar -zxvf ./granted_0.20.0_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.19.2/granted_0.19.2_linux_x86_64.tar.gz -sudo tar -zxvf ./granted_0.19.2_linux_x86_64.tar.gz -C /usr/local/bin/ +curl -OL releases.commonfate.io/granted/v0.20.0/granted_0.20.0_linux_x86_64.tar.gz +sudo tar -zxvf ./granted_0.20.0_linux_x86_64.tar.gz -C /usr/local/bin/ ``` @@ -146,8 +146,8 @@ sudo tar -zxvf ./granted_0.19.2_linux_x86_64.tar.gz -C /usr/local/bin/ ``` -curl -OL releases.commonfate.io/granted/v0.19.2/granted_0.19.2_linux_arm64.tar.gz -sudo tar -zxvf ./granted_0.19.2_linux_arm64.tar.gz -C /usr/local/bin/ +curl -OL releases.commonfate.io/granted/v0.20.0/granted_0.20.0_linux_arm64.tar.gz +sudo tar -zxvf ./granted_0.20.0_linux_arm64.tar.gz -C /usr/local/bin/ ``` @@ -155,8 +155,8 @@ sudo tar -zxvf ./granted_0.19.2_linux_arm64.tar.gz -C /usr/local/bin/ ``` -curl -OL releases.commonfate.io/granted/v0.19.2/granted_0.19.2_linux_i386.tar.gz -sudo tar -zxvf ./granted_0.19.2_linux_i386.tar.gz -C /usr/local/bin/ +curl -OL releases.commonfate.io/granted/v0.20.0/granted_0.20.0_linux_i386.tar.gz +sudo tar -zxvf ./granted_0.20.0_linux_i386.tar.gz -C /usr/local/bin/ ``` @@ -169,11 +169,11 @@ sudo tar -zxvf ./granted_0.19.2_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.19.2/granted_0.19.2_windows_x86_64.zip) +[Granted for Windows x86_64](https://releases.commonfate.io/granted/v0.20.0/granted_0.20.0_windows_x86_64.zip) -[Granted for Windows arm64](https://releases.commonfate.io/granted/v0.19.2/granted_0.19.2_windows_arm64.zip) +[Granted for Windows arm64](https://releases.commonfate.io/granted/v0.20.0/granted_0.20.0_windows_arm64.zip) -[Granted for Windows i386](https://releases.commonfate.io/granted/v0.19.2/granted_0.19.2_windows_i386.zip) +[Granted for Windows i386](https://releases.commonfate.io/granted/v0.20.0/granted_0.20.0_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.19.2 +Granted v0.20.0 ```