Skip to content

Commit d36d274

Browse files
Update changelog and readme for 0.5.4 (#156)
* Changelog update * Update Readme
1 parent b3711de commit d36d274

2 files changed

Lines changed: 14 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ 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+
## [0.5.4] - 2022-09-29
8+
### Fixed
9+
- Enable IWA authmode when interactive authentication is disabled.
10+
711
## [0.5.3] - 2022-09-28
812
### Fixed
913
- Increase IWA Timeout to 15 second and log WS-Trust endpoint error
@@ -77,7 +81,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7781
### Added
7882
- Initial project release.
7983

80-
[Unreleased]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.5.3...HEAD
84+
[Unreleased]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.5.4...HEAD
85+
[0.5.3]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.5.3...0.5.4
8186
[0.5.3]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.5.2...0.5.3
8287
[0.5.2]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.5.1...0.5.2
8388
[0.5.1]: https://github.com/AzureAD/microsoft-authentication-cli/compare/0.5.0...0.5.1

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

0 commit comments

Comments
 (0)