From b479734efebce106647333a4ab2e7ac07fd4f43e Mon Sep 17 00:00:00 2001 From: Bernd Verst Date: Fri, 10 Feb 2023 12:46:20 -0800 Subject: [PATCH 01/17] Install a specific CLI version Useful for installing RCs Signed-off-by: Bernd Verst --- .../en/getting-started/install-dapr-cli.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index 4c8d39880..1c03eefea 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -29,6 +29,15 @@ Install the latest Linux Dapr CLI to `/usr/local/bin`: wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | /bin/bash ``` +##### Installing a specific CLI version + +This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simplify specify the version, e.g. `1.10.0-rc.3` + +```bash +wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | /bin/bash -s 1.9.1 +``` + + #### Install without `sudo` If you do not have access to the `sudo` command or your username is not in the `sudoers` file, you can install Dapr to an alternate directory via the `DAPR_INSTALL_DIR` environment variable. This directory must already exist and be accessible by the current user. @@ -37,6 +46,14 @@ If you do not have access to the `sudo` command or your username is not in the ` wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | DAPR_INSTALL_DIR="$HOME/dapr" /bin/bash ``` +##### Installing a specific CLI version without `sudo` + +This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simplify specify the version, e.g. `1.10.0-rc.3` + +```bash +wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | DAPR_INSTALL_DIR="$HOME/dapr" /bin/bash -s 1.9.1 +``` + {{% /codetab %}} {{% codetab %}} From 7bc863735a202e84522f3ab9df98ae2aa857ec48 Mon Sep 17 00:00:00 2001 From: Bernd Verst Date: Fri, 10 Feb 2023 12:49:34 -0800 Subject: [PATCH 02/17] Update daprdocs/content/en/getting-started/install-dapr-cli.md Signed-off-by: Bernd Verst --- daprdocs/content/en/getting-started/install-dapr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index 1c03eefea..27c1feea2 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -31,7 +31,7 @@ wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O ##### Installing a specific CLI version -This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simplify specify the version, e.g. `1.10.0-rc.3` +This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3` ```bash wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | /bin/bash -s 1.9.1 From 6624e3c19ef15fffa14cf4f8c19a3cf11dfeac23 Mon Sep 17 00:00:00 2001 From: Bernd Verst Date: Fri, 10 Feb 2023 12:49:39 -0800 Subject: [PATCH 03/17] Update daprdocs/content/en/getting-started/install-dapr-cli.md Signed-off-by: Bernd Verst --- daprdocs/content/en/getting-started/install-dapr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index 27c1feea2..1d53b9e27 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -48,7 +48,7 @@ wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O ##### Installing a specific CLI version without `sudo` -This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simplify specify the version, e.g. `1.10.0-rc.3` +This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3` ```bash wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | DAPR_INSTALL_DIR="$HOME/dapr" /bin/bash -s 1.9.1 From a7dbde4fa74a3ec6b3af0564de7ed4346de3f2bd Mon Sep 17 00:00:00 2001 From: Bernd Verst Date: Fri, 10 Feb 2023 12:58:33 -0800 Subject: [PATCH 04/17] Add powershell instructions for windows Signed-off-by: Bernd Verst --- .../en/getting-started/install-dapr-cli.md | 21 +++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index 1d53b9e27..e92adde8a 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -31,7 +31,7 @@ wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O ##### Installing a specific CLI version -This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3` +This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3`. ```bash wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | /bin/bash -s 1.9.1 @@ -48,7 +48,7 @@ wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O ##### Installing a specific CLI version without `sudo` -This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3` +This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3`. ```bash wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | DAPR_INSTALL_DIR="$HOME/dapr" /bin/bash -s 1.9.1 @@ -68,6 +68,14 @@ powershell -Command "iwr -useb https://raw.githubusercontent.com/dapr/cli/master **Note:** Updates to PATH might not be visible until you restart your terminal application. +##### Installing a specific CLI version + +This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3`. + +```powershell +powershell -Command "$script=iwr -useb https://raw.githubusercontent.com/dapr/cli/master/install/install.ps1; $block=[ScriptBlock]::Create($script); invoke-command -ScriptBlock $block -ArgumentList 1.9.1" +``` + #### Install without administrative rights If you do not have admin rights, you can install Dapr to an alternate directory via the `DAPR_INSTALL_DIR` environment variable. The script below creates the directory if it does not exist. @@ -77,6 +85,15 @@ $Env:DAPR_INSTALL_DIR = "" $script=iwr -useb https://raw.githubusercontent.com/dapr/cli/master/install/install.ps1; $block=[ScriptBlock]::Create($script); invoke-command -ScriptBlock $block -ArgumentList "", "$Env:DAPR_INSTALL_DIR" ``` +#### Installing a specific CLI version without administrative rights + +This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3`. + +```powershell +$Env:DAPR_INSTALL_DIR = "" +$script=iwr -useb https://raw.githubusercontent.com/dapr/cli/master/install/install.ps1; $block=[ScriptBlock]::Create($script); invoke-command -ScriptBlock $block -ArgumentList "1.9.1", "$Env:DAPR_INSTALL_DIR" +``` + #### Install using winget Install the latest Windows Dapr CLI to `$Env:SystemDrive\dapr` and add this directory to the user PATH environment variable: From 3c4e7c357287f8044498c6a6dded967068202e3c Mon Sep 17 00:00:00 2001 From: Bernd Verst Date: Fri, 10 Feb 2023 13:02:56 -0800 Subject: [PATCH 05/17] Add mac instructions Signed-off-by: Bernd Verst --- .../en/getting-started/install-dapr-cli.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index e92adde8a..840b8cb5b 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -131,6 +131,14 @@ Install the latest Darwin Dapr CLI to `/usr/local/bin`: curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh | /bin/bash ``` +##### Installing a specific CLI version + +This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3`. + +```bash +curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh | /bin/bash -s 1.9.1 +``` + **For ARM64 Macs:** When installing from the terminal, native ARM64 binaries are available. @@ -164,6 +172,14 @@ If you do not have access to the `sudo` command or your username is not in the ` curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh | DAPR_INSTALL_DIR="$HOME/dapr" /bin/bash ``` +##### Installing a specific CLI version without `sudo` + +This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3`. + +```bash +curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh | DAPR_INSTALL_DIR="$HOME/dapr" -s 1.9.1 +``` + {{% /codetab %}} {{% codetab %}} From c128c1ef37b6a20f6a2b9db719ac2aa81def5347 Mon Sep 17 00:00:00 2001 From: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Date: Tue, 14 Feb 2023 10:48:36 -0600 Subject: [PATCH 06/17] Update daprdocs/content/en/getting-started/install-dapr-cli.md Signed-off-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> --- daprdocs/content/en/getting-started/install-dapr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index 840b8cb5b..25b3413b4 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -31,7 +31,7 @@ wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O ##### Installing a specific CLI version -This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3`. +The following example shows how to install CLI version `1.9.1`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). ```bash wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | /bin/bash -s 1.9.1 From 898045f7fd6e6c63ad89121d36148119596f0233 Mon Sep 17 00:00:00 2001 From: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Date: Tue, 14 Feb 2023 10:48:42 -0600 Subject: [PATCH 07/17] Update daprdocs/content/en/getting-started/install-dapr-cli.md Signed-off-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> --- daprdocs/content/en/getting-started/install-dapr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index 25b3413b4..bcc511523 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -48,7 +48,7 @@ wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O ##### Installing a specific CLI version without `sudo` -This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3`. +The following example shows how to install CLI version `1.9.1`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). ```bash wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | DAPR_INSTALL_DIR="$HOME/dapr" /bin/bash -s 1.9.1 From e2e8fdebcee91ac1ba9ada86c47e5ffaf6ef9e5b Mon Sep 17 00:00:00 2001 From: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Date: Tue, 14 Feb 2023 10:48:51 -0600 Subject: [PATCH 08/17] Update daprdocs/content/en/getting-started/install-dapr-cli.md Signed-off-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> --- daprdocs/content/en/getting-started/install-dapr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index bcc511523..fa4c8a1b4 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -70,7 +70,7 @@ powershell -Command "iwr -useb https://raw.githubusercontent.com/dapr/cli/master ##### Installing a specific CLI version -This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3`. +The following example shows how to install CLI version `1.9.1`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). ```powershell powershell -Command "$script=iwr -useb https://raw.githubusercontent.com/dapr/cli/master/install/install.ps1; $block=[ScriptBlock]::Create($script); invoke-command -ScriptBlock $block -ArgumentList 1.9.1" From 93d7743ef5f10b17682c4e98c262f44e5eb88f79 Mon Sep 17 00:00:00 2001 From: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Date: Tue, 14 Feb 2023 10:49:00 -0600 Subject: [PATCH 09/17] Update daprdocs/content/en/getting-started/install-dapr-cli.md Signed-off-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> --- daprdocs/content/en/getting-started/install-dapr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index fa4c8a1b4..2dd1ad07b 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -87,7 +87,7 @@ $script=iwr -useb https://raw.githubusercontent.com/dapr/cli/master/install/inst #### Installing a specific CLI version without administrative rights -This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3`. +The following example shows how to install CLI version `1.9.1`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). ```powershell $Env:DAPR_INSTALL_DIR = "" From 006ff1640cbbf0217be79f60845f5c7fd67617a1 Mon Sep 17 00:00:00 2001 From: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Date: Tue, 14 Feb 2023 10:49:15 -0600 Subject: [PATCH 10/17] Update daprdocs/content/en/getting-started/install-dapr-cli.md Signed-off-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> --- daprdocs/content/en/getting-started/install-dapr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index 2dd1ad07b..3eb0e44ad 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -133,7 +133,7 @@ curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh ##### Installing a specific CLI version -This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3`. +The following example shows how to install CLI version `1.9.1`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). ```bash curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh | /bin/bash -s 1.9.1 From 0f6db994009446e871bd0d7efa1ebf59bb422d5d Mon Sep 17 00:00:00 2001 From: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Date: Tue, 14 Feb 2023 10:49:23 -0600 Subject: [PATCH 11/17] Update daprdocs/content/en/getting-started/install-dapr-cli.md Signed-off-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> --- daprdocs/content/en/getting-started/install-dapr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index 3eb0e44ad..960c8938f 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -174,7 +174,7 @@ curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh ##### Installing a specific CLI version without `sudo` -This example shows how to install CLI version `1.9.1`. Release candidates can be installed similarly, simply specify the version, e.g. `1.10.0-rc.3`. +The following example shows how to install CLI version `1.9.1`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). ```bash curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh | DAPR_INSTALL_DIR="$HOME/dapr" -s 1.9.1 From 79ee7405f53cf61d21f63994e32f71760f6370df Mon Sep 17 00:00:00 2001 From: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Date: Tue, 14 Feb 2023 12:28:29 -0600 Subject: [PATCH 12/17] Update daprdocs/content/en/getting-started/install-dapr-cli.md Signed-off-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> --- daprdocs/content/en/getting-started/install-dapr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index 960c8938f..adb1f2d20 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -31,7 +31,7 @@ wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O ##### Installing a specific CLI version -The following example shows how to install CLI version `1.9.1`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). +The following example shows how to install CLI version `{{% dapr-latest-version cli="true" %}}`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). ```bash wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | /bin/bash -s 1.9.1 From 2f5a49976b2339d72d21a1e02fc267e8a53c82c8 Mon Sep 17 00:00:00 2001 From: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Date: Tue, 14 Feb 2023 12:28:41 -0600 Subject: [PATCH 13/17] Update daprdocs/content/en/getting-started/install-dapr-cli.md Signed-off-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> --- daprdocs/content/en/getting-started/install-dapr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index adb1f2d20..3675840a1 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -48,7 +48,7 @@ wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O ##### Installing a specific CLI version without `sudo` -The following example shows how to install CLI version `1.9.1`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). +The following example shows how to install CLI version `{{% dapr-latest-version cli="true" %}}`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). ```bash wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | DAPR_INSTALL_DIR="$HOME/dapr" /bin/bash -s 1.9.1 From eff903ca1432512280fcce64162b1247eee77897 Mon Sep 17 00:00:00 2001 From: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Date: Tue, 14 Feb 2023 12:28:47 -0600 Subject: [PATCH 14/17] Update daprdocs/content/en/getting-started/install-dapr-cli.md Signed-off-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> --- daprdocs/content/en/getting-started/install-dapr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index 3675840a1..0897860db 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -70,7 +70,7 @@ powershell -Command "iwr -useb https://raw.githubusercontent.com/dapr/cli/master ##### Installing a specific CLI version -The following example shows how to install CLI version `1.9.1`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). +The following example shows how to install CLI version `{{% dapr-latest-version cli="true" %}}`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). ```powershell powershell -Command "$script=iwr -useb https://raw.githubusercontent.com/dapr/cli/master/install/install.ps1; $block=[ScriptBlock]::Create($script); invoke-command -ScriptBlock $block -ArgumentList 1.9.1" From 8e777c79f91c509c238f073cee8d47aae5075277 Mon Sep 17 00:00:00 2001 From: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Date: Tue, 14 Feb 2023 12:28:54 -0600 Subject: [PATCH 15/17] Update daprdocs/content/en/getting-started/install-dapr-cli.md Signed-off-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> --- daprdocs/content/en/getting-started/install-dapr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index 0897860db..ff39bbf0e 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -87,7 +87,7 @@ $script=iwr -useb https://raw.githubusercontent.com/dapr/cli/master/install/inst #### Installing a specific CLI version without administrative rights -The following example shows how to install CLI version `1.9.1`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). +The following example shows how to install CLI version `{{% dapr-latest-version cli="true" %}}`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). ```powershell $Env:DAPR_INSTALL_DIR = "" From 6beef8dee718abb6f9d13b248d3bd4b8235f3a76 Mon Sep 17 00:00:00 2001 From: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Date: Tue, 14 Feb 2023 12:29:00 -0600 Subject: [PATCH 16/17] Update daprdocs/content/en/getting-started/install-dapr-cli.md Signed-off-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> --- daprdocs/content/en/getting-started/install-dapr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index ff39bbf0e..8056f1c84 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -133,7 +133,7 @@ curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh ##### Installing a specific CLI version -The following example shows how to install CLI version `1.9.1`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). +The following example shows how to install CLI version `{{% dapr-latest-version cli="true" %}}`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). ```bash curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh | /bin/bash -s 1.9.1 From 25b26946e9546daed74d8baeb0d56ae2a6c51b4b Mon Sep 17 00:00:00 2001 From: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Date: Tue, 14 Feb 2023 12:29:08 -0600 Subject: [PATCH 17/17] Update daprdocs/content/en/getting-started/install-dapr-cli.md Signed-off-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> --- daprdocs/content/en/getting-started/install-dapr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/getting-started/install-dapr-cli.md b/daprdocs/content/en/getting-started/install-dapr-cli.md index 8056f1c84..123067e3b 100644 --- a/daprdocs/content/en/getting-started/install-dapr-cli.md +++ b/daprdocs/content/en/getting-started/install-dapr-cli.md @@ -174,7 +174,7 @@ curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh ##### Installing a specific CLI version without `sudo` -The following example shows how to install CLI version `1.9.1`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). +The following example shows how to install CLI version `{{% dapr-latest-version cli="true" %}}`. You can also install release candidates by specifying the version (for example, `1.10.0-rc.3`). ```bash curl -fsSL https://raw.githubusercontent.com/dapr/cli/master/install/install.sh | DAPR_INSTALL_DIR="$HOME/dapr" -s 1.9.1