From 846ba7d58e59bcaa8dbfea587863d061cfc1ba80 Mon Sep 17 00:00:00 2001 From: Yun Wang Date: Fri, 19 Jun 2026 16:28:13 +0200 Subject: [PATCH] chore: prepare v7.4.0 release Bump composer.json and Constant::VERSION to 7.4.0 and stamp the changelog date so the release can be cut via the Release workflow with use_current_version=true (skips the poisoned 7.3.0). chore-typed title intentionally maps to bump=none so merging this does not auto-trigger a release. --- CHANGELOG.md | 2 +- composer.json | 2 +- src/Constant.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2459fb..a22823c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [7.4.0] - 2026-MM-DD +## [7.4.0] - 2026-06-19 ### Fixed — response type naming collisions diff --git a/composer.json b/composer.json index 44d4840..3392353 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "getstream/getstream-php", "description": "PHP SDK for GetStream API", - "version": "v7.3.0", + "version": "v7.4.0", "type": "library", "license": "MIT", "authors": [ diff --git a/src/Constant.php b/src/Constant.php index 1f79dd1..62021f3 100644 --- a/src/Constant.php +++ b/src/Constant.php @@ -6,5 +6,5 @@ class Constant { - public const VERSION = '7.3.0'; + public const VERSION = '7.4.0'; }