Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.5.0"
".": "0.6.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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();

Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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