Skip to content

Commit ba27443

Browse files
authored
Updating README to default to 0.5.0 for example release (#141)
1 parent c20fb5f commit ba27443

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ provide a means of downloading the latest release, so you **must** specify your
3434
To install the application, run
3535

3636
```powershell
37-
# 0.4.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
38-
$env:AZUREAUTH_VERSION = '0.4.0'
37+
# 0.5.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
38+
$env:AZUREAUTH_VERSION = '0.5.0'
3939
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
4040
iex "& { $(irm https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/${env:AZUREAUTH_VERSION}/install/install.ps1) } -Verbose"
4141
```
4242

4343
Or, if you want a method more resilient to failure than `Invoke-Expression`, run
4444

4545
```powershell
46-
# 0.4.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
47-
$env:AZUREAUTH_VERSION = '0.4.0'
46+
# 0.5.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
47+
$env:AZUREAUTH_VERSION = '0.5.0'
4848
$script = "${env:TEMP}\install.ps1"
4949
$url = "https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/${env:AZUREAUTH_VERSION}/install/install.ps1"
5050
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
@@ -64,8 +64,8 @@ release, so you **must** specify your desired version via the `$AZUREAUTH_VERSIO
6464
To install the application, run
6565

6666
```bash
67-
# 0.4.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
68-
export AZUREAUTH_VERSION='0.4.0'
67+
# 0.5.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
68+
export AZUREAUTH_VERSION='0.5.0'
6969
curl -sL https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/$AZUREAUTH_VERSION/install/install.sh | sh
7070
```
7171

0 commit comments

Comments
 (0)