chore: bump version to 1.0.108-SNAPSHOT

This commit is contained in:
matevip 2026-04-05 21:00:20 +08:00
parent 88d16151d3
commit 3de643dca9
3 changed files with 4 additions and 3 deletions

View File

@ -6,7 +6,7 @@
<groupId>vip.mate</groupId>
<artifactId>mateclaw-server</artifactId>
<version>1.0.101</version>
<version>1.0.108-SNAPSHOT</version>
<packaging>jar</packaging>
<name>MateClaw Server</name>

View File

@ -1,6 +1,6 @@
{
"name": "mateclaw-ui",
"version": "1.0.101",
"version": "1.0.108-SNAPSHOT",
"private": true,
"type": "module",
"description": "MateClaw - Personal AI Assistant Web Console",

View File

@ -15,7 +15,7 @@
<transition name="fade">
<div v-if="!sidebarCollapsed" class="logo-text">
<span class="logo-name">Mate<span class="logo-name-highlight">Claw</span></span>
<span class="logo-version">v1.0.0</span>
<span class="logo-version">v{{ appVersion }}</span>
</div>
</transition>
<button
@ -112,6 +112,7 @@ import { ref, computed, onMounted, onBeforeUnmount } from 'vue'
import { useRoute, useRouter } from 'vue-router'
import { useI18n } from 'vue-i18n'
import { useThemeStore } from '@/stores/useThemeStore'
import { version as appVersion } from '../../../package.json'
import type { ThemeMode } from '@/stores/useThemeStore'
const router = useRouter()