Skip to content

Commit 0f0ab6b

Browse files
committed
feat: 发布v2.3.21
1 parent 6902d4d commit 0f0ab6b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

internal/bootstrap/conf.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func initGlobal() {
3131
}
3232

3333
app.Root = app.Conf.MustString("app.root")
34-
app.Version = "2.3.20"
34+
app.Version = "2.3.21"
3535
app.Locale = app.Conf.MustString("app.locale")
3636

3737
// 初始化时区

pkg/db/mysql.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ package db
33
import (
44
"database/sql"
55
"fmt"
6-
_ "github.com/go-sql-driver/mysql"
76
"regexp"
87
"slices"
98

9+
_ "github.com/go-sql-driver/mysql"
10+
1011
"github.com/TheTNB/panel/pkg/types"
1112
)
1213

pkg/db/postgres.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ package db
33
import (
44
"database/sql"
55
"fmt"
6-
_ "github.com/lib/pq"
76
"slices"
87

8+
_ "github.com/lib/pq"
9+
910
"github.com/TheTNB/panel/pkg/systemctl"
1011
"github.com/TheTNB/panel/pkg/types"
1112
)

0 commit comments

Comments
 (0)