Skip to content

Commit cd74c82

Browse files
Merge pull request #125 from AzureAD/update-readme
Default to 0.4.0 as example release
2 parents b755a23 + 4d01aef commit cd74c82

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

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

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

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

4343
```powershell
44-
# 0.3.1 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
45-
$env:AZUREAUTH_VERSION = '0.3.1'
44+
# 0.4.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
45+
$env:AZUREAUTH_VERSION = '0.4.0'
4646
$script = "${env:TEMP}\install.ps1"
4747
$url = 'https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/${env:AZUREAUTH_VERSION}/install/install.ps1'
4848
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
@@ -62,8 +62,8 @@ release, so you **must** specify your desired version via the `$AZUREAUTH_VERSIO
6262
To install the application, run
6363

6464
```bash
65-
# 0.3.1 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
66-
export AZUREAUTH_VERSION='0.3.1'
65+
# 0.4.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
66+
export AZUREAUTH_VERSION='0.4.0'
6767
curl -sL https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/$AZUREAUTH_VERSION/install/install.sh | sh
6868
```
6969

0 commit comments

Comments
 (0)