diff --git a/.github/workflows/.release-please-manifest.json b/.github/workflows/.release-please-manifest.json new file mode 100644 index 00000000000..9718ead750f --- /dev/null +++ b/.github/workflows/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "2.10.0" +} diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml new file mode 100644 index 00000000000..c90da8c04c9 --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,3 @@ +manifest: true, +primaryBranch: main +handleGHRelease: true diff --git a/README.md b/README.md index bbb448e607b..aae153d27c9 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,12 @@ ## Install the SDK You can install the PHP SDK with Composer by editing your `composer.json` file: -``` +```json5 { "require": { - "microsoft/microsoft-graph": "^2.8.0" + // x-release-please-start-version + "microsoft/microsoft-graph": "^2.9.0" + // x-release-please-end--> } } ``` diff --git a/src/GraphConstants.php b/src/GraphConstants.php index a1317aae9c0..972e6c580cb 100644 --- a/src/GraphConstants.php +++ b/src/GraphConstants.php @@ -19,5 +19,7 @@ final class GraphConstants { const API_VERSION = "v1.0"; - const SDK_VERSION = "2.8.0"; + // x-release-please-start-version + const SDK_VERSION = "2.9.0"; + // x-release-please-end }