Skip to content

Commit 4b2a29d

Browse files
committed
chore(release): v2.5.1
1 parent c6bb69f commit 4b2a29d

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ script:
2222
- npm test && codecov
2323
- npm run build
2424
after_success:
25-
- if [[ "$TRAVIS_BRANCH" == "master" ]] && [[ "${TRAVIS_PULL_REQUEST}" = "false" ]]; then
25+
- if [[ "$TRAVIS_BRANCH" == "v2" ]] && [[ "${TRAVIS_PULL_REQUEST}" = "false" ]]; then
2626
./script/release.sh;
27-
./script/deploy.sh;
2827
fi

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": "2.5.0",
3+
"version": "2.5.1",
44
"homepage": "https://github.com/leancloud/javascript-sdk",
55
"authors": [
66
"LeanCloud <[email protected]>"

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.5.1 (2017-06-28)
2+
### Bug Fixes
3+
* 修复了应用内社交模块对 AuthOptions 支持不完整的问题
4+
* 修复了应用内社交模块在云引擎中使用时错误的打印了 `AV.User.currentAsync` 方法不可用警告的问题
5+
16
# 2.5.0 (2017-06-01)
27
### Bug Fixes
38
* 修复了查询 `Role` 时错误的打印了 deprecation 警告的问题

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": "2.5.0",
3+
"version": "2.5.1",
44
"main": "./dist/node/index.js",
55
"description": "LeanCloud JavaScript SDK.",
66
"repository": {

script/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ test "$(git config user.name)" = '' && (
88
)
99
git add dist -f;
1010
git commit -m "chore(build): build ${REV} [skip ci]";
11-
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git ${BRANCH}:dist > /dev/null 2>&1;
11+
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git ${BRANCH}:v2-dist > /dev/null 2>&1;
1212
git reset HEAD~1;
1313
echo "done.";

src/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = '2.5.0';
1+
module.exports = '2.5.1';

0 commit comments

Comments
 (0)