release: 3.8.0-beta1
This commit is contained in:
parent
b1344616b8
commit
fb166fb3e4
3 changed files with 5 additions and 5 deletions
2
assets
2
assets
|
@ -1 +1 @@
|
|||
Subproject commit 5e66c6fd9c8b50f31a7a2d1f1e77ef13543ee366
|
||||
Subproject commit 0feca325f4b74d1c99f71ebced032f50da689da0
|
|
@ -1,13 +1,13 @@
|
|||
package conf
|
||||
|
||||
// BackendVersion 当前后端版本号
|
||||
var BackendVersion = "3.7.1"
|
||||
var BackendVersion = "3.8.0-beta1"
|
||||
|
||||
// RequiredDBVersion 与当前版本匹配的数据库版本
|
||||
var RequiredDBVersion = "3.7.1"
|
||||
var RequiredDBVersion = "3.8.0-beta1"
|
||||
|
||||
// RequiredStaticVersion 与当前版本匹配的静态资源版本
|
||||
var RequiredStaticVersion = "3.7.1"
|
||||
var RequiredStaticVersion = "3.8.0-beta1"
|
||||
|
||||
// IsPro 是否为Pro版本
|
||||
var IsPro = "false"
|
||||
|
|
|
@ -73,7 +73,7 @@ func (p GeneratorList) Generate(ctx context.Context, file io.Reader, src, name s
|
|||
continue
|
||||
}
|
||||
|
||||
if res.Continue {
|
||||
if res != nil && res.Continue {
|
||||
util.Log().Debug("Generator %s for %s returned continue, passing through to next generator.", reflect.TypeOf(generator).String(), name)
|
||||
|
||||
// defer cleanup funcs
|
||||
|
|
Loading…
Add table
Reference in a new issue