Commit b03775ca5d6643e3568b3fb75b75bbdb783e2d2c

Authored by aarongao
1 parent 5bd8aa90
Exists in v1.2 and in 1 other branch v1.1

.

Config/config.go
... ... @@ -10,6 +10,7 @@ type Config struct {
10 10 Env string
11 11 TokenSecret string
12 12 ServerPort string
  13 + Version string
13 14 }
14 15  
15 16 var Info = Config{}
... ...
Config/config.json
... ... @@ -7,5 +7,6 @@
7 7 "redisPath": "127.0.0.1:6379",
8 8 "Env": "DEV",
9 9 "tokenSecret": "token.secret",
10   - "ServerPort": ":8080"
  10 + "ServerPort": ":8080",
  11 + "Version": "v1.1"
11 12 }
... ...
README.md
... ... @@ -3,7 +3,7 @@
3 3 | Specification | Value |
4 4 |-----|-----|
5 5 | API Version | 1.0.0 |
6   -| BasePath | 正式 leyoutu.st-i.com.cn; 测试 letu.api.imagchina.com |
  6 +| BasePath | 正式 leyoutu.st-i.com.cn; 测试 leyoutu.sti-uat.com |
7 7  
8 8  
9 9  
... ...
Version.md
... ... @@ -6,13 +6,14 @@
6 6  
7 7 ##### 变更说明:
8 8  
9   -1. /UserInfo接口增加权限验证(需要携带Token),游客和操作员看到的信息内容不一样
  9 +1. /UserInfo接口增加权限验证(需要携带Token),区分游客和操作员
10 10 2.
11 11  
12   -##### 开发&发布流程:
  12 +##### 发布流程:
  13 +
  14 +1. 提交APP代码到git(v1.1分支)
  15 +2. 使用 “测试环境地址” 打包内测版本至TestFlight
  16 +3. 升级 ”生产环境“ 接口至v1.1
  17 +4. 使用 “生产环境地址” 打包公测版本至TestFlight
  18 +5. 发布至商店
13 19  
14   -1. 提交代码到git(v1.1分支)
15   -2. 编译为内测版本至TestFlight,并附带升级明细
16   -3. 合并master分支
17   -4. 修改正式接口地址并编译为公测版本至TestFlight
18   -5. 发布至商店
19 20 \ No newline at end of file
... ...