Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
westy92 committed Dec 29, 2022
1 parent f749221 commit ec31ae7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

class Client
{
public static string $version = '1.0.0';
public static string $version = '1.0.1';

private \GuzzleHttp\Client $client;
private array $defaultHeaders;
Expand Down
2 changes: 1 addition & 1 deletion test/CommonTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function testSendsUserAgent(): void
{
$this->mock->append(
function (\GuzzleHttp\Psr7\Request $request) {
$this->assertEquals(['HolidayApiPHP/1.0.0'], $request->getHeader('user-agent'));
$this->assertEquals(['HolidayApiPHP/1.0.1'], $request->getHeader('user-agent'));
return new Response(200, [], TestJson::getEventsDefaultJson());
},
);
Expand Down

0 comments on commit ec31ae7

Please sign in to comment.