Skip to content

Commit

Permalink
Merge pull request #112 from microsoft/dev
Browse files Browse the repository at this point in the history
1.0.1
  • Loading branch information
Ndiritu authored Nov 2, 2023
2 parents 677dc5b + 2cd7052 commit 1c0eefa
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

## [1.0.1]

### Changed
- Initialises URL Template in Request Information to empty string. [#111](https://github.com/microsoft/kiota-abstractions-php/pull/111)

## [1.0.0] - 2023-11-01

### Changed
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 = '1.0.0';
public const VERSION = '1.0.1';
}
2 changes: 1 addition & 1 deletion src/RequestInformation.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class RequestInformation {
/** @var string $RAW_URL_KEY */
public static string $RAW_URL_KEY = 'request-raw-url';
/** @var string $urlTemplate The url template for the current request */
public string $urlTemplate;
public string $urlTemplate = '';
/**
* The path parameters for the current request
* @var array<string,mixed> $pathParameters
Expand Down

0 comments on commit 1c0eefa

Please sign in to comment.