Skip to content

Commit

Permalink
chore: bump version to 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Crissium committed Aug 20, 2024
1 parent f837383 commit a66b48d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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=""
Expand Down
2 changes: 1 addition & 1 deletion client/src/DrawerContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export default function DrawerContent() {
variant='body2'
sx={{ display: 'inline-block' }}
>
v1.2.0
v1.2.1
</Typography>
</Box>
<Box>
Expand Down
2 changes: 1 addition & 1 deletion server/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]:
Expand Down

0 comments on commit a66b48d

Please sign in to comment.