From 7a750cb9de3dee52bfb1c69473c79512e65519f9 Mon Sep 17 00:00:00 2001 From: Philip Gichuhi Date: Tue, 28 Nov 2023 10:42:30 +0300 Subject: [PATCH] Fix filepath in script to bump SDK version --- scripts/BumpStableSdkVersion.php | 2 +- src/GraphConstants.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/BumpStableSdkVersion.php b/scripts/BumpStableSdkVersion.php index 57eb44e40ca..33d7d367f13 100644 --- a/scripts/BumpStableSdkVersion.php +++ b/scripts/BumpStableSdkVersion.php @@ -2,7 +2,7 @@ include_once 'SdkVersionUtils.php'; -const GRAPH_CONSTANTS_FILEPATH = "./src/Core/GraphConstants.php"; +const GRAPH_CONSTANTS_FILEPATH = "./src/GraphConstants.php"; $packagistVersion = getLatestPackagistVersion(); if (!$packagistVersion) { diff --git a/src/GraphConstants.php b/src/GraphConstants.php index fe62e542abe..8fe6c33527b 100644 --- a/src/GraphConstants.php +++ b/src/GraphConstants.php @@ -19,5 +19,5 @@ final class GraphConstants { const API_VERSION = "v1.0"; - const SDK_VERSION = "2.0.0"; + const SDK_VERSION = "2.1.0"; }