ESH/mc/vendor/microsoft/microsoft-graph/scripts/BumpPreviewSdkVersion.php
2024-10-23 18:28:06 +05:30

16 lines
467 B
PHP

<?php
include_once 'SdkVersionUtils.php';
const GRAPH_CONSTANTS_FILEPATH = "./src/GraphConstants.php";
$packagistVersion = getLatestPackagistVersion(false);
if (!$packagistVersion) {
echo "Failed to fetch latest preview sdk version";
return;
}
$bumpedSdkVersion = incrementVersion($packagistVersion);
echo "Version after increment: {$bumpedSdkVersion}\n";
updateGraphConstants(GRAPH_CONSTANTS_FILEPATH, $bumpedSdkVersion);
updateReadme($bumpedSdkVersion);