diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1cfe7eb..aa39267 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.75.0" + ".": "0.76.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index c0c45d4..c2ad697 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 236 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-81da26cfd6540bc5195c268095b26df132373e932997f224d19247a36e1a1183.yml -openapi_spec_hash: 7b9bbc35378f2fc47629810923bd0017 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-f8f6ba45132556b8cd3b7aec8578241638d4774e41ac769df78731d919c1825f.yml +openapi_spec_hash: 9c80a378f9fb89d648f47596aef948d9 config_hash: 25d7d7aa4882db6189b4b53e8e249e80 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e9ba4b..684ca15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.76.0 (2026-03-16) + +Full Changelog: [v0.75.0...v0.76.0](https://github.com/Increase/increase-php/compare/v0.75.0...v0.76.0) + +### Features + +* **api:** api update ([96265f9](https://github.com/Increase/increase-php/commit/96265f96255e60b8afb4f494a8f618a438b004d8)) + ## 0.75.0 (2026-03-16) Full Changelog: [v0.74.0...v0.75.0](https://github.com/Increase/increase-php/compare/v0.74.0...v0.75.0) diff --git a/README.md b/README.md index e213570..9aca2b0 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ The REST API documentation can be found on [increase.com](https://increase.com/d ``` -composer require "increase/increase 0.75.0" +composer require "increase/increase 0.76.0" ``` diff --git a/src/Entities/Entity.php b/src/Entities/Entity.php index 39d717b..e80ba27 100644 --- a/src/Entities/Entity.php +++ b/src/Entities/Entity.php @@ -174,7 +174,7 @@ final class Entity implements BaseModel public string $type; /** - * The validation results for the entity. + * The validation results for the entity. Learn more about [validations](/documentation/entity-validation). */ #[Required] public ?Validation $validation; @@ -515,7 +515,7 @@ public function withType(Type|string $type): self } /** - * The validation results for the entity. + * The validation results for the entity. Learn more about [validations](/documentation/entity-validation). * * @param Validation|ValidationShape|null $validation */ diff --git a/src/Entities/Entity/Validation.php b/src/Entities/Entity/Validation.php index 72d9fde..d0e66f7 100644 --- a/src/Entities/Entity/Validation.php +++ b/src/Entities/Entity/Validation.php @@ -11,7 +11,7 @@ use Increase\Entities\Entity\Validation\Status; /** - * The validation results for the entity. + * The validation results for the entity. Learn more about [validations](/documentation/entity-validation). * * @phpstan-import-type IssueShape from \Increase\Entities\Entity\Validation\Issue * diff --git a/src/Version.php b/src/Version.php index ea27ddc..b4d694d 100644 --- a/src/Version.php +++ b/src/Version.php @@ -5,5 +5,5 @@ namespace Increase; // x-release-please-start-version -const VERSION = '0.75.0'; +const VERSION = '0.76.0'; // x-release-please-end