Skip to content

Commit 9eb0345

Browse files
authored
Update README to default to 0.5.1 for example release (#147)
1 parent daa1f12 commit 9eb0345

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Microsoft Authentication CLI
22

33
[![Tests](https://shields.io/github/workflow/status/AzureAD/microsoft-authentication-cli/Build%20and%20Test/main?style=for-the-badge&logo=github)](https://github.com/AzureAD/microsoft-authentication-cli/actions/workflows/dotnet-test.yml)
4-
[![Release](https://shields.io/github/v/release/AzureAD/microsoft-authentication-cli?display_name=tag&include_prereleases&sort=semver&style=for-the-badge&logo=github)](https://github.com/AzureAD/microsoft-authentication-cli/releases/tag/0.5.0)
5-
![GitHub release (latest by SemVer)](https://img.shields.io/github/downloads/azuread/microsoft-authentication-cli/0.5.0/total?logo=github&style=for-the-badge&color=blue)
4+
[![Release](https://shields.io/github/v/release/AzureAD/microsoft-authentication-cli?display_name=tag&include_prereleases&sort=semver&style=for-the-badge&logo=github)](https://github.com/AzureAD/microsoft-authentication-cli/releases/tag/0.5.1)
5+
![GitHub release (latest by SemVer)](https://img.shields.io/github/downloads/azuread/microsoft-authentication-cli/0.5.1/total?logo=github&style=for-the-badge&color=blue)
66
[![License](https://shields.io/badge/license-MIT-purple?style=for-the-badge)](./LICENSE.txt)
77

88
---
@@ -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.5.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
38-
$env:AZUREAUTH_VERSION = '0.5.0'
37+
# 0.5.1 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
38+
$env:AZUREAUTH_VERSION = '0.5.1'
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.5.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
47-
$env:AZUREAUTH_VERSION = '0.5.0'
46+
# 0.5.1 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
47+
$env:AZUREAUTH_VERSION = '0.5.1'
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.5.0 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
68-
export AZUREAUTH_VERSION='0.5.0'
67+
# 0.5.1 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
68+
export AZUREAUTH_VERSION='0.5.1'
6969
curl -sL https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/$AZUREAUTH_VERSION/install/install.sh | sh
7070
```
7171

0 commit comments

Comments
 (0)