From f59afa2cac664b1ebe8c68eede370d64dde7b4a2 Mon Sep 17 00:00:00 2001 From: dorsha Date: Sat, 29 Aug 2026 00:21:05 +0300 Subject: [PATCH 1/2] fix: make release-please tags Packagist-compatible release-please was tagging releases as descope-php-vX.Y.Z (component prefix included by default in manifest mode). Packagist only recognizes tags that parse as versions (X.Y.Z or vX.Y.Z), so every release since the switch to release-please was invisible to Packagist and never published. The manually created plain tags (0.6.4, 0.6.5, 0.7.0) are the only versions Packagist has. - Set include-component-in-tag: false so releases are tagged vX.Y.Z. - Bump the manifest to 0.7.0 to acknowledge the manual 0.7.0 tag, so the next release sorts above the latest version already on Packagist. - Fix composer.json homepage to point at this repo. Co-Authored-By: Claude Fable 5 --- .release-please-manifest.json | 2 +- composer.json | 2 +- release-please-config.json | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b572b14..e7ca613 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.6.6" + ".": "0.7.0" } diff --git a/composer.json b/composer.json index a8704c1..909adcb 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "drag-and-drop", "authentication" ], - "homepage": "https://github.com/descope/php-sdk", + "homepage": "https://github.com/descope/descope-php", "license": "MIT", "authors": [ { diff --git a/release-please-config.json b/release-please-config.json index de6ae9b..9658049 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -3,6 +3,7 @@ ".": { "release-type": "simple", "package-name": "descope-php", + "include-component-in-tag": false, "changelog-path": "CHANGELOG.md", "bump-minor-pre-major": true, "bump-patch-for-minor-pre-major": true, From 294710d9b48b8ecacaf909c92fc031050e71833d Mon Sep 17 00:00:00 2001 From: dorsha Date: Sat, 29 Aug 2026 00:26:20 +0300 Subject: [PATCH 2/2] fix: sync SDK_VERSION extra-file with manifest bump Co-Authored-By: Claude Fable 5 --- src/SDK/EndpointsV1.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SDK/EndpointsV1.php b/src/SDK/EndpointsV1.php index 87a3a5c..8e4fe66 100644 --- a/src/SDK/EndpointsV1.php +++ b/src/SDK/EndpointsV1.php @@ -23,7 +23,7 @@ class EndpointsV1 { - public const SDK_VERSION = '0.6.6'; // x-release-please-version + public const SDK_VERSION = '0.7.0'; // x-release-please-version public static $baseUrl = DEFAULT_URL_PREFIX . '.' . DEFAULT_DOMAIN;