Skip to content

Commit 4f73ed5

Browse files
Merge pull request #8 from CASParser/release-please--branches--main--changes--next
release: 0.6.0
2 parents 34d2df4 + fa17a86 commit 4f73ed5

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.5.0"
2+
".": "0.6.0"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 21
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cas-parser%2Fcas-parser-d9763d006969b49a1473851069fdfa429eb13133b64103a62963bb70ddb22305.yml
33
openapi_spec_hash: 6aee689b7a759b12c85c088c15e29bc0
4-
config_hash: 4ab3e1ee76a463e0ed214541260ee12e
4+
config_hash: 5509bb7a961ae2e79114b24c381606d4

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.6.0 (2026-02-23)
4+
5+
Full Changelog: [v0.5.0...v0.6.0](https://github.com/CASParser/cas-parser-php/compare/v0.5.0...v0.6.0)
6+
7+
### Features
8+
9+
* **api:** manual updates ([7a23bb1](https://github.com/CASParser/cas-parser-php/commit/7a23bb10766f159a5dbbb92e80d8609a30274273))
10+
311
## 0.5.0 (2026-02-23)
412

513
Full Changelog: [v0.4.0...v0.5.0](https://github.com/CASParser/cas-parser-php/compare/v0.4.0...v0.5.0)

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ It is generated with [Stainless](https://www.stainless.com/).
66

77
## Documentation
88

9-
The REST API documentation can be found on [docs.casparser.in](https://docs.casparser.in).
9+
The REST API documentation can be found on [casparser.in](https://casparser.in/docs).
1010

1111
## Installation
1212

@@ -40,10 +40,7 @@ Parameters with a default value must be set by name.
4040

4141
use CasParser\Client;
4242

43-
$client = new Client(
44-
apiKey: getenv('CAS_PARSER_API_KEY') ?: 'My API Key',
45-
environment: 'environment_1',
46-
);
43+
$client = new Client(apiKey: getenv('CAS_PARSER_API_KEY') ?: 'My API Key');
4744

4845
$response = $client->credits->check();
4946

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public function __construct(
101101

102102
$baseUrl ??= Util::getenv(
103103
'CAS_PARSER_BASE_URL'
104-
) ?: 'https://portfolio-parser.api.casparser.in';
104+
) ?: 'https://api.casparser.in';
105105

106106
$options = RequestOptions::parse(
107107
RequestOptions::with(

src/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
namespace CasParser;
66

77
// x-release-please-start-version
8-
const VERSION = '0.5.0';
8+
const VERSION = '0.6.0';
99
// x-release-please-end

0 commit comments

Comments
 (0)