Skip to content

Commit

Permalink
Bumping up version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
muthurathinam-m committed Aug 17, 2018
1 parent 4f27143 commit 318feb6
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/graph-js-sdk-core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/graph-js-sdk-web.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/src/common.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export declare let oDataQueryNames: string[];
export declare const DEFAULT_VERSION = "v1.0";
export declare const GRAPH_BASE_URL = "https://graph.microsoft.com/";
export declare const PACKAGE_VERSION = "1.1.0";
export declare const PACKAGE_VERSION = "1.2.0";
export interface AuthProviderCallback {
(error: any, accessToken: string): void;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/src/common.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@microsoft/microsoft-graph-client",
"//": "NOTE: The version here should match exactly the exported const PACKAGE_VERSION in common.ts. If you change it here, also change it there.",
"version": "1.1.0",
"version": "1.2.0",
"description": "Microsoft Graph Client Library",
"main": "lib/src/index.js",
"typings": "lib/src/index",
Expand Down
2 changes: 1 addition & 1 deletion src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const GRAPH_BASE_URL = "https://graph.microsoft.com/";

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

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

0 comments on commit 318feb6

Please sign in to comment.