diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml
index 12ad67190..fffdc925d 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.8.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.8.2 .
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c399b12f4..c4d16aa01 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,32 @@
+## v2.8.2 / 2023-03-30
+
+### Enhancement
+
+* [Update the number of flashcards after removing the flashcards](https://github.com/siyuan-note/siyuan/issues/7796)
+* [Opening a PDF with a new window requires positioning and the positioning fails when opening it for the first time](https://github.com/siyuan-note/siyuan/issues/7803)
+* [Use `Endpoint` for network connectivity checks when syncing](https://github.com/siyuan-note/siyuan/issues/7805)
+* [The current page number needs to be kept after the PDF is opened in a new window](https://github.com/siyuan-note/siyuan/issues/7809)
+* [Browser web clipper support tag `
` attribute `srcset`](https://github.com/siyuan-note/siyuan/issues/7810)
+* [Characters are lost when referenced in a block containing `))`](https://github.com/siyuan-note/siyuan/issues/7812)
+* [Move some buttons to more menu in PDF tab](https://github.com/siyuan-note/siyuan/issues/7813)
+* [The reminder message will no longer pop up when the subscription expires for more than 2 days](https://github.com/siyuan-note/siyuan/issues/7816)
+* [PDF export supports setting margins](https://github.com/siyuan-note/siyuan/issues/7823)
+* [Adjusted the YFM style with widget export](https://github.com/siyuan-note/siyuan/pull/7826)
+* [Add recent documents on mobile](https://github.com/siyuan-note/siyuan/issues/7828)
+
+### Bug
+
+* [Incorrect path when entering flashcard management from document tree](https://github.com/siyuan-note/siyuan/issues/7797)
+* [The document tag delete button is covered by the floating layer](https://github.com/siyuan-note/siyuan/issues/7799)
+* [An exception occurs when exporting HTML and PDF](https://github.com/siyuan-note/siyuan/issues/7800)
+* [Kernel panic on some systems on Windows](https://github.com/siyuan-note/siyuan/issues/7806)
+* [After entering `\` in the table, the next column is merged incorrectly](https://github.com/siyuan-note/siyuan/issues/7817)
+* [Rename tag in new window, prompt won't disappear](https://github.com/siyuan-note/siyuan/issues/7818)
+* [After the document is transferred to the heading, occurs two copies of the reference block](https://github.com/siyuan-note/siyuan/issues/7819)
+* [Wrong parsing virtual reference with `\` before it](https://github.com/siyuan-note/siyuan/issues/7821)
+* [Parsing and rendering YFM incorrectly when exporting widget block attribute `data-export-md`](https://github.com/siyuan-note/siyuan/issues/7824)
+* [Recent docs not updated after renaming](https://github.com/siyuan-note/siyuan/issues/7827)
+
## v2.8.1 / 2023-03-28
### 改进功能
diff --git a/app/appx/AppxManifest.xml b/app/appx/AppxManifest.xml
index d9b1e74cc..d2c092684 100644
--- a/app/appx/AppxManifest.xml
+++ b/app/appx/AppxManifest.xml
@@ -9,7 +9,7 @@
+ Version="2.8.2.0"/>
SiYuan
云南链滴科技有限公司
diff --git a/app/package.json b/app/package.json
index 37d2a1f66..e915efde0 100644
--- a/app/package.json
+++ b/app/package.json
@@ -1,6 +1,6 @@
{
"name": "SiYuan",
- "version": "2.8.1",
+ "version": "2.8.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 3fcaa8c58..dde4d8b78 100644
--- a/kernel/util/working.go
+++ b/kernel/util/working.go
@@ -43,7 +43,7 @@ import (
var Mode = "prod"
const (
- Ver = "2.8.1"
+ Ver = "2.8.2"
IsInsider = false
)