diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml
index 97ca9e90b..0cf255997 100644
--- a/.github/workflows/dockerimage.yml
+++ b/.github/workflows/dockerimage.yml
@@ -33,4 +33,4 @@ jobs:
- name: Build the Docker image
run: |
- docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7 -t b3log/siyuan:latest -t b3log/siyuan:v2.0.21 .
\ No newline at end of file
+ docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7 -t b3log/siyuan:latest -t b3log/siyuan:v2.0.22 .
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4aa9d5492..c5b8614e5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,29 @@
+## v2.0.22 / 2022-06-19
+
+### 改进功能
+
+* [弹出的编辑框(如公式/Mindmap 等)支持撤销和重做](https://github.com/siyuan-note/siyuan/issues/5203)
+* [重置数据仓库](https://github.com/siyuan-note/siyuan/issues/5212)
+* [嵌入块添加 Alt/Shift/Ctrl 点击](https://github.com/siyuan-note/siyuan/issues/5216)
+* [全局关系图中将标签链接到文档块上](https://github.com/siyuan-note/siyuan/issues/5218)
+* [添加文档树 `删除文档时不需要确认` 选项 ](https://github.com/siyuan-note/siyuan/issues/5225)
+* [移动端超级块中表格改进](https://github.com/siyuan-note/siyuan/issues/5227)
+* [快捷键支持 Alt+F1-F12](https://github.com/siyuan-note/siyuan/issues/5230)
+* [快捷键提示中 Enter 修改为 ↩](https://github.com/siyuan-note/siyuan/issues/5231)
+* [关闭分屏页签后光标消失](https://github.com/siyuan-note/siyuan/issues/5237)
+
+### 开发重构
+
+* [数据仓库索引 `Index` 不再加密](https://github.com/siyuan-note/siyuan/issues/5229)
+
+### 修复缺陷
+
+* [移动端菜单遮住左右侧栏](https://github.com/siyuan-note/siyuan/issues/5217)
+* [复制数据仓库密钥错误](https://github.com/siyuan-note/siyuan/issues/5226)
+* [折叠标题跨层级展开问题](https://github.com/siyuan-note/siyuan/issues/5232)
+* [文档标题编辑粘贴内容后不会进行修改](https://github.com/siyuan-note/siyuan/issues/5233)
+* [在提及中搜索不到结果问题](https://github.com/siyuan-note/siyuan/issues/5236)
+
## v2.0.21 / 2022-06-17
### 改进功能
diff --git a/app/appx/AppxManifest.xml b/app/appx/AppxManifest.xml
index 37d0410fe..36a71cb3c 100644
--- a/app/appx/AppxManifest.xml
+++ b/app/appx/AppxManifest.xml
@@ -9,7 +9,7 @@
+ Version="2.0.22.0"/>
SiYuan
云南链滴科技有限公司
diff --git a/app/package.json b/app/package.json
index 13b14f963..7ef577063 100644
--- a/app/package.json
+++ b/app/package.json
@@ -1,6 +1,6 @@
{
"name": "SiYuan",
- "version": "2.0.21",
+ "version": "2.0.22",
"description": "A local-first personal knowledge management system, supports fine-grained block-level reference, and Markdown WYSIWYG.",
"homepage": "https://b3log.org/siyuan",
"main": "./electron/main.js",
diff --git a/kernel/util/working.go b/kernel/util/working.go
index 07407c80a..d21b61c38 100644
--- a/kernel/util/working.go
+++ b/kernel/util/working.go
@@ -39,7 +39,7 @@ import (
var Mode = "prod"
const (
- Ver = "2.0.21"
+ Ver = "2.0.22"
IsInsider = false
)