Skip to content

Commit 6bfbf57

Browse files
authored
Merge pull request #159 from microsoftgraph/dev
Release 2.0.3
2 parents 3428ae8 + 11cbe70 commit 6bfbf57

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

.gitattributes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,12 @@
55
/vendor export-ignore
66
.gitattributes export-ignore
77
.gitignore export-ignore
8+
/.github export-ignore
9+
/.vscode export-ignore
10+
/scripts export-ignore
11+
/tests export-ignore
12+
.editorconfig export-ignore
13+
sonar-project.properties export-ignore
14+
phpunit.xml export-ignore
15+
phpstan.neon export-ignore
16+
phpdoc.dist.xml export-ignore

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To install the `microsoft-graph-core` library with Composer, either run `compose
88
```
99
{
1010
"require": {
11-
"microsoft/microsoft-graph-core": "^2.0.0"
11+
"microsoft/microsoft-graph-core": "^2.0.3"
1212
}
1313
}
1414
```

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
],
1414
"require": {
1515
"php": "^8.0 || ^7.4",
16-
"microsoft/kiota-authentication-phpleague": "^1.0.0",
17-
"microsoft/kiota-http-guzzle": "^1.0.0",
18-
"microsoft/kiota-serialization-json": "^1.0.0",
19-
"microsoft/kiota-serialization-text": "^1.0.0",
16+
"microsoft/kiota-authentication-phpleague": "^1.0.1",
17+
"microsoft/kiota-http-guzzle": "^1.1.0",
18+
"microsoft/kiota-serialization-json": "^1.0.1",
19+
"microsoft/kiota-serialization-text": "^1.0.1",
2020
"ext-json": "*"
2121
},
2222
"require-dev": {

src/GraphConstants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ final class GraphConstants
2525
const REST_ENDPOINT = "https://graph.microsoft.com/";
2626

2727
// Define HTTP request constants
28-
const SDK_VERSION = "2.0.2";
28+
const SDK_VERSION = "2.0.3";
2929

3030
// Define error constants
3131
const MAX_PAGE_SIZE = 999;

0 commit comments

Comments
 (0)