Skip to content

Commit 9ee44fc

Browse files
committed
chore(release): bump version to v1.5.2
1 parent d33b7c8 commit 9ee44fc

File tree

9 files changed

+14
-11
lines changed

9 files changed

+14
-11
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "leancloud-storage",
3-
"version": "1.5.1",
3+
"version": "1.5.2",
44
"homepage": "https://github.com/leancloud/javascript-sdk",
55
"authors": [
66
"LeanCloud <[email protected]>"

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.5.2 (2016-11-10)
2+
* 修复了在 React Native 中调用 `AV.setProduction` 方法导致 React Native 异常的问题
3+
14
## 1.5.1 (2016-10-20)
25
* 修复了 `AV.Insight.startJob` 方法中 saveAs 参数未生效的问题
36

dist/av-es6.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10441,7 +10441,7 @@ const setHeaders = (sessionToken, signKey) => {
1044110441
}
1044210442
}
1044310443
if (AV._config.applicationProduction !== null) {
10444-
headers['X-LC-Prod'] = AV._config.applicationProduction;
10444+
headers['X-LC-Prod'] = String(AV._config.applicationProduction);
1044510445
}
1044610446
if (!AV._config.isNode) {
1044710447
headers['X-LC-UA'] = `AV/${AV.version}`;
@@ -13302,7 +13302,7 @@ module.exports = {
1330213302
* Each engineer has a duty to keep the code elegant
1330313303
**/
1330413304

13305-
module.exports = 'js1.5.1';
13305+
module.exports = 'js1.5.2';
1330613306

1330713307
},{}]},{},[27])(27)
1330813308
});

dist/av-min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/av.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10315,7 +10315,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
1031510315
}
1031610316
}
1031710317
if (AV._config.applicationProduction !== null) {
10318-
headers['X-LC-Prod'] = AV._config.applicationProduction;
10318+
headers['X-LC-Prod'] = String(AV._config.applicationProduction);
1031910319
}
1032010320
if (!AV._config.isNode) {
1032110321
headers['X-LC-UA'] = "AV/" + AV.version;
@@ -13106,6 +13106,6 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
1310613106
* Each engineer has a duty to keep the code elegant
1310713107
**/
1310813108

13109-
module.exports = 'js1.5.1';
13109+
module.exports = 'js1.5.2';
1311013110
}, {}] }, {}, [27])(27);
1311113111
});

dist/node/request.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ var setHeaders = function setHeaders(sessionToken, signKey) {
9292
}
9393
}
9494
if (AV._config.applicationProduction !== null) {
95-
headers['X-LC-Prod'] = AV._config.applicationProduction;
95+
headers['X-LC-Prod'] = String(AV._config.applicationProduction);
9696
}
9797
if (!AV._config.isNode) {
9898
headers['X-LC-UA'] = 'AV/' + AV.version;

dist/node/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
* Each engineer has a duty to keep the code elegant
66
**/
77

8-
module.exports = 'js1.5.1';
8+
module.exports = 'js1.5.2';

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "leancloud-storage",
3-
"version": "1.5.1",
3+
"version": "1.5.2",
44
"main": "./dist/node/index.js",
55
"description": "LeanCloud JavaScript SDK.",
66
"repository": {

src/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
* Each engineer has a duty to keep the code elegant
44
**/
55

6-
module.exports = 'js1.5.1';
6+
module.exports = 'js1.5.2';

0 commit comments

Comments
 (0)