diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f38329..e79bd9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,14 +2,20 @@ ## 1.0.0 (2021-08-04) - ### Bug Fixes -* bump version number ([2eb5d71](https://www.github.com/ShipEngine/shipengine-php/commit/2eb5d710f82ccefd2110a720394234e47e38040e)) -* implement CD w/ release please ([5325e40](https://www.github.com/ShipEngine/shipengine-php/commit/5325e40f0bff35f8cda1fc5f67ce5f461345a905)) +- bump version number ([2eb5d71](https://www.github.com/ShipEngine/shipengine-php/commit/2eb5d710f82ccefd2110a720394234e47e38040e)) +- implement CD w/ release please ([5325e40](https://www.github.com/ShipEngine/shipengine-php/commit/5325e40f0bff35f8cda1fc5f67ce5f461345a905)) ## 1.0.1 ### Changes -* increase default timeout from 15s to 60s \ No newline at end of file +- increase default timeout from 15s to 60s + +## 1.0.2 + +### Changes + +- Added error code FundingSourceMissingConfiguration +- Added error code FundingSourceError diff --git a/docs/shipengine-php-docs/classes/ShipEngine-Util-Constants-ErrorCode.html b/docs/shipengine-php-docs/classes/ShipEngine-Util-Constants-ErrorCode.html index 8f4f82b..dcc11fa 100644 --- a/docs/shipengine-php-docs/classes/ShipEngine-Util-Constants-ErrorCode.html +++ b/docs/shipengine-php-docs/classes/ShipEngine-Util-Constants-ErrorCode.html @@ -397,7 +397,7 @@

VERIFICATION_FAILURE  = "verification_failure" - +
When verifying your account (by email, SMS, phone call, etc.) this error indicates that the verification code is incorrect. Please re-start the verification process to get a new code.
@@ -417,6 +417,18 @@

ShipEngine only allows you to have one webhook of each type. If you would like to replace a webhook with a new one, please delete the old one first.
+
+ FUNDING_SOURCE_MISSING_CONFIGURATION + +  = "funding_source_missing_configuration" +
+
Funding source isnt properly configured and can't be used.
+
+FUNDING_SOURCE_ERROR + + = "funding_source_error" +
+
There was an unexpected problem with a funding source.
@@ -1421,6 +1433,61 @@

+

+ FUNDING_SOURCE_MISSING_CONFIGURATION + +

+ + + +

Funding source isnt properly configured and can't be used.

+ + + public + mixed + FUNDING_SOURCE_MISSING_CONFIGURATION + = "funding_source_missing_configuration" + + + +
+ + + + +
+

+ FUNDING_SOURCE_ERROR + +

+ + + +

There was an unexpected problem with a funding source.

+ + + public + mixed + FUNDING_SOURCE_ERROR + = "funding_source_error" + + + +
+ + +
diff --git a/src/ShipEngine.php b/src/ShipEngine.php index 852bba2..9349154 100644 --- a/src/ShipEngine.php +++ b/src/ShipEngine.php @@ -18,7 +18,7 @@ final class ShipEngine /** * ShipEngine SDK Version */ - public const VERSION = '1.0.1'; + public const VERSION = '1.0.2'; // /** // * diff --git a/version.txt b/version.txt index 7dea76e..6d7de6e 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.1 +1.0.2