Skip to content

Commit

Permalink
Merge pull request #105 from microsoft/dev
Browse files Browse the repository at this point in the history
Release 0.9.1
  • Loading branch information
Ndiritu authored Oct 31, 2023
2 parents ef1f830 + 55e35da commit 5a955ce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [0.9.1] - 2023-10-31

### Changed
- Made return type of `AccessTokenProvider` `getAuthorizationTokenAsync()` nullable. [#104](https://github.com/microsoft/kiota-abstractions-php/pull/104)

## [0.9.0] - 2023-10-30

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Authentication/AccessTokenProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ interface AccessTokenProvider
*
* @param string $url the target URI to get an access token for
* @param array<string, mixed> $additionalAuthenticationContext
* @return Promise<string>
* @return Promise<string|null>
*/
public function getAuthorizationTokenAsync(string $url, array $additionalAuthenticationContext = []): Promise;

Expand Down
2 changes: 1 addition & 1 deletion src/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

final class Constants
{
public const VERSION = '0.9.0';
public const VERSION = '0.9.1';
}

0 comments on commit 5a955ce

Please sign in to comment.