chore: bump version to 4.0.0 for major release#21
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the project to the stable 4.0.0 release version across code and metadata.
Changes:
- Bumped SDK version constant from
4.0.0-beta.1to4.0.0 - Updated
composer.jsonpackage version tov4.0.0 - Updated CHANGELOG entry from beta to stable release with release date
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/Constant.php | Updates runtime/exposed SDK version constant to the stable release. |
| composer.json | Updates Composer package metadata version to the stable release. |
| CHANGELOG.md | Updates changelog header to stable release and adds the release date. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "name": "getstream/getstream-php", | ||
| "description": "PHP SDK for GetStream API", | ||
| "version": "v4.0.0-beta.1", | ||
| "version": "v4.0.0", |
There was a problem hiding this comment.
composer.json uses a v-prefixed version (v4.0.0) while src/Constant.php exposes 4.0.0 without the prefix. This inconsistency can be confusing (and can break simple string/semver comparisons in tooling). Consider normalizing to the same format everywhere (commonly 4.0.0 without the v), and if this is a library distributed via Packagist, consider omitting the "version" field entirely so Composer derives it from VCS tags.
| "version": "v4.0.0", |
No description provided.