Skip to content

Commit 6ecb7e5

Browse files
committed
Released 1.0.0-rc2
1 parent 2273490 commit 6ecb7e5

File tree

8 files changed

+22
-10
lines changed

8 files changed

+22
-10
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-jssdk.js",
3-
"version": "1.0.0-rc1",
3+
"version": "1.0.0-rc2",
44
"homepage": "https://github.com/leancloud/javascript-sdk",
55
"authors": [
66
"killme2008 <[email protected]>"

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 1.0.0-rc2 日期:215 年 10 月 22 日
2+
* 兼容 React Native 运行环境。
3+
* 修复 AV.Role 的兼容性问题。
4+
* 修复 `AV._request` 某些情况下无法正常工作的 Bug。
5+
6+
# 0.6.3 日期:2015 年 10 月 22 日
7+
* 修复 AV.Role 的兼容性问题。
8+
19
# 1.0.0-rc1 日期:215 年 10 月 22 日
210
* 兼容 React Native 运行环境。
311

dist/av-core-mini.js

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

dist/av-core.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5854,6 +5854,8 @@ module.exports = function(AV) {
58545854
if (_.isString(name)) {
58555855
AV.Object.prototype.constructor.call(this, null, null);
58565856
this.setName(name);
5857+
} else {
5858+
AV.Object.prototype.constructor.call(this, name, acl);
58575859
}
58585860
if (acl === undefined) {
58595861
var defaultAcl = new AV.ACL();
@@ -8333,7 +8335,7 @@ module.exports = function(AV) {
83338335
},{"_process":28,"underscore":30}],26:[function(require,module,exports){
83348336
'use strict';
83358337

8336-
module.exports = "js1.0.0-rc1";
8338+
module.exports = "js1.0.0-rc2";
83378339

83388340
},{}],27:[function(require,module,exports){
83398341

dist/av-mini.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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6722,6 +6722,8 @@ module.exports = function(AV) {
67226722
if (_.isString(name)) {
67236723
AV.Object.prototype.constructor.call(this, null, null);
67246724
this.setName(name);
6725+
} else {
6726+
AV.Object.prototype.constructor.call(this, name, acl);
67256727
}
67266728
if (acl === undefined) {
67276729
var defaultAcl = new AV.ACL();
@@ -9326,7 +9328,7 @@ module.exports = function(AV) {
93269328
},{"_process":34,"underscore":36}],31:[function(require,module,exports){
93279329
'use strict';
93289330

9329-
module.exports = "js1.0.0-rc1";
9331+
module.exports = "js1.0.0-rc2";
93309332

93319333
},{}],32:[function(require,module,exports){
93329334
'use strict';

lib/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
'use strict';
22

3-
module.exports = "js1.0.0-rc1";
3+
module.exports = "js1.0.0-rc2";

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "avoscloud-sdk",
3-
"version": "1.0.0-rc1",
3+
"version": "1.0.0-rc2",
44
"main": "./lib/av.js",
55
"description": "AVOSCloud JavaScript SDK.",
66
"repository": {

0 commit comments

Comments
 (0)