diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2aca35a..4208b5c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.0" + ".": "0.6.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 49508b3..603f57a 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 21 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cas-parser%2Fcas-parser-d9763d006969b49a1473851069fdfa429eb13133b64103a62963bb70ddb22305.yml openapi_spec_hash: 6aee689b7a759b12c85c088c15e29bc0 -config_hash: 4ab3e1ee76a463e0ed214541260ee12e +config_hash: 5509bb7a961ae2e79114b24c381606d4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 41daf9a..359b96c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.6.0 (2026-02-23) + +Full Changelog: [v0.5.0...v0.6.0](https://github.com/CASParser/cas-parser-php/compare/v0.5.0...v0.6.0) + +### Features + +* **api:** manual updates ([7a23bb1](https://github.com/CASParser/cas-parser-php/commit/7a23bb10766f159a5dbbb92e80d8609a30274273)) + ## 0.5.0 (2026-02-23) Full Changelog: [v0.4.0...v0.5.0](https://github.com/CASParser/cas-parser-php/compare/v0.4.0...v0.5.0) diff --git a/README.md b/README.md index e37f9da..3521a91 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ It is generated with [Stainless](https://www.stainless.com/). ## Documentation -The REST API documentation can be found on [docs.casparser.in](https://docs.casparser.in). +The REST API documentation can be found on [casparser.in](https://casparser.in/docs). ## Installation @@ -40,10 +40,7 @@ Parameters with a default value must be set by name. use CasParser\Client; -$client = new Client( - apiKey: getenv('CAS_PARSER_API_KEY') ?: 'My API Key', - environment: 'environment_1', -); +$client = new Client(apiKey: getenv('CAS_PARSER_API_KEY') ?: 'My API Key'); $response = $client->credits->check(); diff --git a/src/Client.php b/src/Client.php index cf8252a..8267a23 100644 --- a/src/Client.php +++ b/src/Client.php @@ -101,7 +101,7 @@ public function __construct( $baseUrl ??= Util::getenv( 'CAS_PARSER_BASE_URL' - ) ?: 'https://portfolio-parser.api.casparser.in'; + ) ?: 'https://api.casparser.in'; $options = RequestOptions::parse( RequestOptions::with( diff --git a/src/Version.php b/src/Version.php index 6568f49..2ffda3d 100644 --- a/src/Version.php +++ b/src/Version.php @@ -5,5 +5,5 @@ namespace CasParser; // x-release-please-start-version -const VERSION = '0.5.0'; +const VERSION = '0.6.0'; // x-release-please-end