diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml
index 2c96701b9..d5130b43b 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.2.2 .
\ 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.2.3 .
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 10cf52f67..6e9ad1bf2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,24 @@
+## v2.2.3 / 2022-09-28
+
+### 改进功能
+
+* [带子级升降标题层级](https://github.com/siyuan-note/siyuan/issues/2860)
+* [标题块支持复制下方块](https://github.com/siyuan-note/siyuan/issues/5450)
+* [表格内光标和按键交互优化](https://github.com/siyuan-note/siyuan/issues/5955)
+* [提升桌面端自动更新安装包下载速度](https://github.com/siyuan-note/siyuan/issues/5997)
+* [手动检查更新时自动下载更新安装包](https://github.com/siyuan-note/siyuan/issues/5998)
+* [桌面端自动下载更新安装包选项默认开启](https://github.com/siyuan-note/siyuan/issues/6000)
+
+### 修复缺陷
+
+* [使用社区主题时外观模式跟随系统切换异常](https://github.com/siyuan-note/siyuan/issues/5985)
+* [浏览器端界面异常](https://github.com/siyuan-note/siyuan/issues/5986)
+* [切换同一种外观模式时主题没有清除 js 残留](https://github.com/siyuan-note/siyuan/issues/5988)
+* [点击引用到同一文档的聚焦块中后退光标消失](https://github.com/siyuan-note/siyuan/issues/5989)
+* [复制带超链接的图片无法保存到本地](https://github.com/siyuan-note/siyuan/issues/5993)
+* [桌面端拉起自动更新安装包偶尔失败](https://github.com/siyuan-note/siyuan/issues/5996)
+* [云端数据同步报错导致界面溢出异常](https://github.com/siyuan-note/siyuan/issues/5999)
+
## v2.2.2 / 2022-09-27
### 改进功能
diff --git a/app/appx/AppxManifest.xml b/app/appx/AppxManifest.xml
index dfc500d4e..54d567334 100644
--- a/app/appx/AppxManifest.xml
+++ b/app/appx/AppxManifest.xml
@@ -9,7 +9,7 @@
+ Version="2.2.3.0"/>
SiYuan
云南链滴科技有限公司
diff --git a/app/package.json b/app/package.json
index 1110ca300..8a4d63724 100644
--- a/app/package.json
+++ b/app/package.json
@@ -1,6 +1,6 @@
{
"name": "SiYuan",
- "version": "2.2.2",
+ "version": "2.2.3",
"description": "Build Your Eternal Digital Garden",
"homepage": "https://b3log.org/siyuan",
"main": "./electron/main.js",
diff --git a/kernel/util/working.go b/kernel/util/working.go
index 6632affdb..8a7215877 100644
--- a/kernel/util/working.go
+++ b/kernel/util/working.go
@@ -41,7 +41,7 @@ import (
var Mode = "prod"
const (
- Ver = "2.2.2"
+ Ver = "2.2.3"
IsInsider = false
)