Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'release/2021.1.0' into develop
  • Loading branch information
Yuki Ito committed Jun 18, 2021
2 parents 3c909c9 + 77c21c4 commit 1561e52
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Expand Up @@ -9,7 +9,7 @@
- FIX
- バグ修正

## develop
## 2021.1.0

- [CHANGE] fflate を導入して DataChannel zlib 対応を追加する
- @yuitowest
Expand Down
10 changes: 5 additions & 5 deletions dist/sora.js
@@ -1,7 +1,7 @@
/**
* @sora/sdk
* undefined
* @version: 2021.1.0-canary.33
* @version: 2021.1.0
* @author: Shiguredo Inc.
* @license: Apache-2.0
**/
Expand Down Expand Up @@ -604,7 +604,7 @@
/**
* @sora/e2ee
* WebRTC SFU Sora JavaScript E2EE Library
* @version: 2021.1.0-canary.33
* @version: 2021.1.0
* @author: Shiguredo Inc.
* @license: Apache-2.0
**/
Expand Down Expand Up @@ -772,7 +772,7 @@
}
}
static version() {
return "2021.1.0-canary.33";
return "2021.1.0";
}
static wasmVersion() {
return window.e2ee.version();
Expand Down Expand Up @@ -1599,7 +1599,7 @@
}
const message = {
type: "connect",
sora_client: "Sora JavaScript SDK 2021.1.0-canary.33",
sora_client: "Sora JavaScript SDK 2021.1.0",
environment: window.navigator.userAgent,
role: role,
channel_id: channelId,
Expand Down Expand Up @@ -3207,7 +3207,7 @@
return new SoraConnection(signalingUrl, debug);
},
version: function () {
return "2021.1.0-canary.33";
return "2021.1.0";
},
helpers: {
applyMediaStreamConstraints,
Expand Down
4 changes: 2 additions & 2 deletions dist/sora.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/sora.min.js.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/sora.mjs
@@ -1,7 +1,7 @@
/**
* @sora/sdk
* undefined
* @version: 2021.1.0-canary.33
* @version: 2021.1.0
* @author: Shiguredo Inc.
* @license: Apache-2.0
**/
Expand Down Expand Up @@ -598,7 +598,7 @@ function WasmExec () {
/**
* @sora/e2ee
* WebRTC SFU Sora JavaScript E2EE Library
* @version: 2021.1.0-canary.33
* @version: 2021.1.0
* @author: Shiguredo Inc.
* @license: Apache-2.0
**/
Expand Down Expand Up @@ -766,7 +766,7 @@ class SoraE2EE {
}
}
static version() {
return "2021.1.0-canary.33";
return "2021.1.0";
}
static wasmVersion() {
return window.e2ee.version();
Expand Down Expand Up @@ -1593,7 +1593,7 @@ function createSignalingMessage(offerSDP, role, channelId, metadata, options) {
}
const message = {
type: "connect",
sora_client: "Sora JavaScript SDK 2021.1.0-canary.33",
sora_client: "Sora JavaScript SDK 2021.1.0",
environment: window.navigator.userAgent,
role: role,
channel_id: channelId,
Expand Down Expand Up @@ -3201,7 +3201,7 @@ var sora = {
return new SoraConnection(signalingUrl, debug);
},
version: function () {
return "2021.1.0-canary.33";
return "2021.1.0";
},
helpers: {
applyMediaStreamConstraints,
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Expand Up @@ -2,5 +2,5 @@
"packages": [
"packages/*"
],
"version": "2021.1.0-canary.33"
"version": "2021.1.0"
}
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "sora-js-sdk",
"version": "2021.1.0-canary.33",
"version": "2021.1.0",
"description": "WebRTC SFU Sora JavaScript SDK",
"main": "dist/sora.min.js",
"module": "dist/sora.mjs",
Expand Down
4 changes: 2 additions & 2 deletions packages/e2ee/package.json
@@ -1,6 +1,6 @@
{
"name": "@sora/e2ee",
"version": "2021.1.0-canary.33",
"version": "2021.1.0",
"description": "WebRTC SFU Sora JavaScript E2EE Library",
"author": "Shiguredo Inc.",
"license": "Apache-2.0",
Expand Down Expand Up @@ -28,6 +28,6 @@
"typescript": "^4.3.2"
},
"dependencies": {
"@sora/go-wasm": "^2021.1.0-canary.33"
"@sora/go-wasm": "^2021.1.0"
}
}
2 changes: 1 addition & 1 deletion packages/go-wasm/package.json
@@ -1,6 +1,6 @@
{
"name": "@sora/go-wasm",
"version": "2021.1.0-canary.33",
"version": "2021.1.0",
"main": "src/wasm_exec.js",
"module": "src/wasm_exec.js",
"types": "src/wasm_exec.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@sora/sdk",
"version": "2021.1.0-canary.33",
"version": "2021.1.0",
"author": "Shiguredo Inc.",
"license": "Apache-2.0",
"main": "dist/sora.min.js",
Expand Down Expand Up @@ -35,7 +35,7 @@
"typescript": "^4.3.2"
},
"dependencies": {
"@sora/e2ee": "^2021.1.0-canary.33",
"@sora/e2ee": "^2021.1.0",
"fflate": "^0.7.0"
}
}

0 comments on commit 1561e52

Please sign in to comment.