Skip to content

Commit

Permalink
Prepare to release verson 1.3.6 (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
XinGao authored and ydogandjiev committed Oct 4, 2018
1 parent 97e90ba commit 04fadbc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -26,7 +26,7 @@ To install the stable version:

#### Production

You can access [these files on unpkg](https://unpkg.com/@microsoft/teams-js@1.3.5/dist/MicrosoftTeams.min.js), download them, or point your package manager to them.
You can access [these files on unpkg](https://unpkg.com/@microsoft/teams-js@1.3.6/dist/MicrosoftTeams.min.js), download them, or point your package manager to them.

## Usage

Expand All @@ -46,10 +46,10 @@ Reference the library inside of your `.html` page using:

```html
<!-- Microsoft Teams JavaScript API (via CDN) -->
<script src="https://unpkg.com/@microsoft/teams-js@1.3.5/dist/MicrosoftTeams.min.js" integrity="sha384-t1ID2NmMGB5huCWZdo2EV4RXQ9H/+VDaxxWeUfWuuVuYIc62+Xj7M5re4yqbpbDt" crossorigin="anonymous"></script>
<script src="https://unpkg.com/@microsoft/teams-js@1.3.6/dist/MicrosoftTeams.min.js" integrity="sha384-bw/tQKCO7OgnYN29MFvAaRlOI7YaLpqeRtWhE//yfPA9pFx5THAydRA7o43Vt2JS" crossorigin="anonymous"></script>

<!-- Microsoft Teams JavaScript API (via npm) -->
<script src="node_modules/@microsoft/teams-js@1.3.5/dist/MicrosoftTeams.min.js"></script>
<script src="node_modules/@microsoft/teams-js@1.3.6/dist/MicrosoftTeams.min.js"></script>

<!-- Microsoft Teams JavaScript API (via local) -->
<script src="MicrosoftTeams.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "@microsoft/teams-js",
"author": "Microsoft Teams",
"version": "1.3.5",
"version": "1.3.6",
"description": "Microsoft Client SDK for building app for Microsoft teams",
"main": "./dist/MicrosoftTeams.min.js",
"typings": "./dist/MicrosoftTeams.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/MicrosoftTeams.ts
Expand Up @@ -44,7 +44,7 @@ interface Window {
namespace microsoftTeams {
"use strict";

const version = "1.3.5";
const version = "1.3.6";

const validOrigins = [
"https://teams.microsoft.com",
Expand Down
2 changes: 1 addition & 1 deletion test/MicrosoftTeams.spec.ts
Expand Up @@ -129,7 +129,7 @@ describe("MicrosoftTeams", () => {
expect(initMessage.id).toBe(0);
expect(initMessage.func).toBe("initialize");
expect(initMessage.args.length).toEqual(1);
expect(initMessage.args[0]).toEqual("1.3.5");
expect(initMessage.args[0]).toEqual("1.3.6");
});

it("should allow multiple initialize calls", () => {
Expand Down

0 comments on commit 04fadbc

Please sign in to comment.