Skip to content

Commit

Permalink
Bump patch version to 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jlevers committed Jun 23, 2023
1 parent eb37193 commit a01788f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "highsidelabs/walmart-api",
"version": "0.3.1",
"version": "0.3.2",
"description": "A PHP client for Walmart's Marketplace, Content Provider, Drop Ship Vendor, and Warehouse Supplier APIs.",
"keywords": [
"walmart",
Expand Down
2 changes: 1 addition & 1 deletion resources/generator-config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"artifactVersion": "0.3.1",
"artifactVersion": "0.3.2",

"disallowAdditionalPropertiesIfNotPresent": false,
"variableNamingConvention": "camelCase",
Expand Down
2 changes: 1 addition & 1 deletion src/Apis/BaseApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function getConfig()
protected function getDefaultHeaders(): array
{
return [
'WM_SVC.NAME' => 'highsidelabs/walmart-api/0.3.1',
'WM_SVC.NAME' => 'highsidelabs/walmart-api/0.3.2',
'WM_QOS.CORRELATION_ID' => Uuid::uuid4()->toString(),
// These aren't required by every endpoint, but many use them and passing the when they're
// not needed doesn't adversely affect the request
Expand Down
2 changes: 1 addition & 1 deletion src/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class Configuration
*
* @var string
*/
protected string $userAgent = 'highsidelabs/walmart-api-php/0.3.1';
protected string $userAgent = 'highsidelabs/walmart-api-php/0.3.2';

/**
* Debug switch (default set to false)
Expand Down

0 comments on commit a01788f

Please sign in to comment.