Skip to content

Commit

Permalink
release: 3.8.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
HFO4 committed May 27, 2023
1 parent b134461 commit fb166fb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pkg/conf/version.go
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/thumb/pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fb166fb

Please sign in to comment.