From a66b48dbef2dd005e511b0d80443dbfaba4d0063 Mon Sep 17 00:00:00 2001 From: Yi Xing Date: Tue, 20 Aug 2024 10:07:25 +0800 Subject: [PATCH] chore: bump version to 1.2.1 --- Dockerfile | 2 +- client/src/DrawerContent.js | 2 +- server/updater.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7b84e02..458b6fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN yarn build # Stage 2: Production Environment FROM alpine:3.19 -ARG VERSION="1.2.0" +ARG VERSION="1.2.1" ARG ENABLE_FULL_TEXT_SEARCH="" ARG ENABLE_MORPHOLOGY_ANALYSIS="" ARG ENABLE_CHINESE_CONVERSION="" diff --git a/client/src/DrawerContent.js b/client/src/DrawerContent.js index b6a9e28..8643e20 100644 --- a/client/src/DrawerContent.js +++ b/client/src/DrawerContent.js @@ -115,7 +115,7 @@ export default function DrawerContent() { variant='body2' sx={{ display: 'inline-block' }} > - v1.2.0 + v1.2.1 diff --git a/server/updater.py b/server/updater.py index bb6603f..73c268a 100644 --- a/server/updater.py +++ b/server/updater.py @@ -15,7 +15,7 @@ project_directory = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) windows_save_path = os.path.join(os.path.dirname(project_directory), 'SilverDict-windows.zip') unix_save_path = os.path.join(project_directory, 'SilverDict.zip') -current_version = 'v1.2.0' +current_version = 'v1.2.1' def _get_latest_version_and_release_note() -> tuple[str, str]: