diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml
index 955751a1c..f4552540a 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,linux/arm/v8 -t b3log/siyuan:latest -t b3log/siyuan:v2.6.1 .
\ No newline at end of file
+ docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8 -t b3log/siyuan:latest -t b3log/siyuan:v2.6.2 .
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c1e9f4ae9..1f1c64a39 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,16 @@
+## v2.6.2 / 2023-01-03
+
+### 改进功能
+
+* [卡包浏览时移除闪卡后更新右侧编辑器](https://github.com/siyuan-note/siyuan/issues/6981)
+
+### 修复缺陷
+
+* [图标全部消失](https://github.com/siyuan-note/siyuan/issues/6974)
+* [点击编辑器 `...` 菜单不应该弹出订阅提示](https://github.com/siyuan-note/siyuan/issues/6976)
+* [浏览卡包界面无法移除闪卡](https://github.com/siyuan-note/siyuan/issues/6977)
+* [新建卡包没有持久化](https://github.com/siyuan-note/siyuan/issues/6980)
+
## v2.6.1 / 2023-01-03
### 改进功能
diff --git a/app/appx/AppxManifest.xml b/app/appx/AppxManifest.xml
index 08420fe4c..84ec7145c 100644
--- a/app/appx/AppxManifest.xml
+++ b/app/appx/AppxManifest.xml
@@ -9,7 +9,7 @@
+ Version="2.6.2.0"/>
SiYuan
云南链滴科技有限公司
diff --git a/app/package.json b/app/package.json
index ce3b7fe60..4319316cc 100644
--- a/app/package.json
+++ b/app/package.json
@@ -1,6 +1,6 @@
{
"name": "SiYuan",
- "version": "2.6.1",
+ "version": "2.6.2",
"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 922472764..c48d5e6f4 100644
--- a/kernel/util/working.go
+++ b/kernel/util/working.go
@@ -41,7 +41,7 @@ import (
var Mode = "prod"
const (
- Ver = "2.6.1"
+ Ver = "2.6.2"
IsInsider = false
)