Skip to content

Commit

Permalink
Add config for release please.
Browse files Browse the repository at this point in the history
  • Loading branch information
SilasKenneth committed May 22, 2024
1 parent 1e516b8 commit e6d2818
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "2.10.0"
}
3 changes: 3 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
manifest: true,
primaryBranch: main
handleGHRelease: true
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-->
}
}
```
Expand Down
4 changes: 3 additions & 1 deletion src/GraphConstants.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit e6d2818

Please sign in to comment.