Skip to content

Commit e45f2b2

Browse files
committed
fix
1 parent 7c2065a commit e45f2b2

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
## 0.3.0
44

55
- 支持灰度发布
6-
- 适配`code-push app add` 命令,应用不在以名字区分平台,而是以类型区分平台
6+
- 适配`code-push app add` 命令,应用不再以名字区分平台,而是以类型区分平台
77
- 数据库表apps新增字段`os`,`platform`
88
- 完善`code-push release/release-react/release-cordova` 命令
99
- 数据库表packages新增`is_disabled`,`rollout`字段
1010
- 适配`code-push patch`命令
1111
- 新增`log_report_download`,`log_report_deploy`日志表
12-
- 升级npm依赖包
12+
- 升级npm依赖包

bin/www

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var server = http.createServer(app);
4848
var models = require('../models');
4949
models.Versions.findOne({where:{type:1}})
5050
.then(function(v){
51-
if (!v || v.get('version') != '0.2.15') {
51+
if (!v || v.get('version') != '0.3.0') {
5252
throw new Error(`Please upgrade your database. usage bin/db upgrade or code-push-server-db upgrade`);
5353
}
5454
server.listen(port, host);

0 commit comments

Comments
 (0)