update: version 1.0.8

This commit is contained in:
Kerwin
2025-07-23 18:46:57 +08:00
parent 67e15e03dc
commit dbc8fa9c36
4 changed files with 7 additions and 7 deletions

View File

@@ -186,9 +186,9 @@ l9pan/
./scripts/version.sh show
# 更新版本号
./scripts/version.sh patch # 修订版本 1.0.7)
./scripts/version.sh minor # 次版本 1.0.7)
./scripts/version.sh major # 主版本 1.0.7)
./scripts/version.sh patch # 修订版本 1.0.8)
./scripts/version.sh minor # 次版本 1.0.8)
./scripts/version.sh major # 主版本 1.0.8)
# 发布版本到GitHub
./scripts/version.sh release

View File

@@ -20,7 +20,7 @@ services:
- app-network
backend:
image: ctwj/urldb-backend:1.0.7
image: ctwj/urldb-backend:1.0.8
environment:
DB_HOST: postgres
DB_PORT: 5432
@@ -37,7 +37,7 @@ services:
- app-network
frontend:
image: ctwj/urldb-frontend:1.0.7
image: ctwj/urldb-frontend:1.0.8
environment:
NUXT_PUBLIC_API_SERVER: http://backend:8080/api
NUXT_PUBLIC_API_CLIENT: /api

View File

@@ -18,7 +18,7 @@ interface VersionResponse {
export const useVersion = () => {
const versionInfo = ref<VersionInfo>({
version: '1.0.7',
version: '1.0.8',
build_time: '',
git_commit: 'unknown',
git_branch: 'unknown',

View File

@@ -1,6 +1,6 @@
{
"name": "res-db-web",
"version": "1.0.7",
"version": "1.0.8",
"private": true,
"type": "module",
"scripts": {