Skip to content

Commit 318feb6

Browse files
Bumping up version to 1.2.0
1 parent 4f27143 commit 318feb6

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

lib/graph-js-sdk-core.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/graph-js-sdk-web.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/src/common.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export declare let oDataQueryNames: string[];
22
export declare const DEFAULT_VERSION = "v1.0";
33
export declare const GRAPH_BASE_URL = "https://graph.microsoft.com/";
4-
export declare const PACKAGE_VERSION = "1.1.0";
4+
export declare const PACKAGE_VERSION = "1.2.0";
55
export interface AuthProviderCallback {
66
(error: any, accessToken: string): void;
77
}

lib/src/common.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@microsoft/microsoft-graph-client",
33
"//": "NOTE: The version here should match exactly the exported const PACKAGE_VERSION in common.ts. If you change it here, also change it there.",
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"description": "Microsoft Graph Client Library",
66
"main": "lib/src/index.js",
77
"typings": "lib/src/index",

src/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const GRAPH_BASE_URL = "https://graph.microsoft.com/";
44

55
// NOTE: This should be kept up to date with the version used in package.json.
66
// If you are changing this please ensure you are also changing it in package.json.
7-
export const PACKAGE_VERSION = "1.1.0";
7+
export const PACKAGE_VERSION = "1.2.0";
88

99
// support oData params with and without $ prefix
1010
oDataQueryNames = oDataQueryNames.concat(oDataQueryNames.map((s) => "$"+s));

0 commit comments

Comments
 (0)