Skip to content

Commit 6fd773b

Browse files
Update changelog and readme for 0.5.2 (#152)
* Changelog update for 0.5.2 release * Update README to 0.5.2
1 parent 2ce22ff commit 6fd773b

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [0.5.2] - 2022-09-28
88
### Fixed
99
- Option `--resource` is not needed if option `--scope` is provided.
1010
- Refactoring IWA AuthFlow to call GetTokenIWA when we have a MsalUiRequiredException
@@ -73,7 +73,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7373
### Added
7474
- Initial project release.
7575

76-
[Unreleased]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.5.1...HEAD
76+
[Unreleased]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.5.2...HEAD
77+
[0.5.2]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.5.1...0.5.2
7778
[0.5.1]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.5.0...0.5.1
7879
[0.5.0]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.4.0...0.5.0
7980
[0.4.0]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.3.1...0.4.0

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.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)
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.2)
5+
![GitHub release (latest by SemVer)](https://img.shields.io/github/downloads/azuread/microsoft-authentication-cli/0.5.2/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.1 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
38-
$env:AZUREAUTH_VERSION = '0.5.1'
37+
# 0.5.2 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
38+
$env:AZUREAUTH_VERSION = '0.5.2'
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.1 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
47-
$env:AZUREAUTH_VERSION = '0.5.1'
46+
# 0.5.2 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
47+
$env:AZUREAUTH_VERSION = '0.5.2'
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.1 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
68-
export AZUREAUTH_VERSION='0.5.1'
67+
# 0.5.2 is an example. See https://github.com/AzureAD/microsoft-authentication-cli/releases for the latest.
68+
export AZUREAUTH_VERSION='0.5.2'
6969
curl -sL https://raw.githubusercontent.com/AzureAD/microsoft-authentication-cli/$AZUREAUTH_VERSION/install/install.sh | sh
7070
```
7171

0 commit comments

Comments
 (0)