Skip to content

Commit ba8004a

Browse files
release: 0.3.0
1 parent 9a72241 commit ba8004a

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
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.2.0"
2+
".": "0.3.0"
33
}

CHANGELOG.md

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

3+
## 0.3.0 (2025-11-04)
4+
5+
Full Changelog: [v0.2.0...v0.3.0](https://github.com/CASParser/cas-parser-php/compare/v0.2.0...v0.3.0)
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* remove confusing `toArray()` alias to `__serialize()` in favour of `toProperties()`
10+
11+
### Features
12+
13+
* **api:** api update ([da8b838](https://github.com/CASParser/cas-parser-php/commit/da8b83821dab28680f72e98a943af25df296e314))
14+
* remove confusing `toArray()` alias to `__serialize()` in favour of `toProperties()` ([84053c4](https://github.com/CASParser/cas-parser-php/commit/84053c4b32db33f341e5e9bf89f2aabe982a2695))
15+
16+
17+
### Bug Fixes
18+
19+
* **ci:** release doctor workflow ([d7d0f00](https://github.com/CASParser/cas-parser-php/commit/d7d0f005e9022cce83d3316626e5746a3a02b694))
20+
* inverted retry condition ([0112a9a](https://github.com/CASParser/cas-parser-php/commit/0112a9a50be77cb4681413034b3d88d791774f6c))
21+
22+
23+
### Chores
24+
25+
* add license ([7742369](https://github.com/CASParser/cas-parser-php/commit/7742369f0a91046a7aa843391627e8931c6280f8))
26+
* **client:** send metadata headers ([9a72241](https://github.com/CASParser/cas-parser-php/commit/9a72241ae57939ae08709709a26a87f1ad83d9e2))
27+
* **docs:** update readme formatting ([f992e92](https://github.com/CASParser/cas-parser-php/commit/f992e921cd7043ea562ad58fb01905bd2039fa50))
28+
* refactor methods ([e25fa02](https://github.com/CASParser/cas-parser-php/commit/e25fa02ca0d7d49d88f1859c99e2db925a74e722))
29+
* use pascal case for phpstan typedefs ([574d168](https://github.com/CASParser/cas-parser-php/commit/574d1680fbbaccfc4281a98e33d205f4d8a7e043))
30+
331
## 0.2.0 (2025-09-13)
432

533
Full Changelog: [v0.1.0...v0.2.0](https://github.com/CASParser/cas-parser-php/compare/v0.1.0...v0.2.0)

src/Client.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ public function __construct(?string $apiKey = null, ?string $baseUrl = null)
4444
headers: [
4545
'Content-Type' => 'application/json',
4646
'Accept' => 'application/json',
47-
'User-Agent' => sprintf('CAS Parser/PHP %s', '0.0.1'),
47+
'User-Agent' => sprintf('CAS Parser/PHP %s', '0.3.0'),
4848
'X-Stainless-Lang' => 'php',
49-
'X-Stainless-Package-Version' => '0.0.1',
49+
'X-Stainless-Package-Version' => '0.3.0',
5050
'X-Stainless-OS' => $this->getNormalizedOS(),
5151
'X-Stainless-Arch' => $this->getNormalizedArchitecture(),
5252
'X-Stainless-Runtime' => 'php',

0 commit comments

Comments
 (0)