diff --git a/debian/changelog b/debian/changelog
index 6ecfa7b..5f9cfa9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,19 @@
+spark-store (3.3.3) stable; urgency=medium
+
+  * feat: 首页链接调用浏览器打开 
+
+-- shenmo <shenmo@spark-app.store>  Fri, 30 Jan 2022 00:00:00 +0800
+
+0spark-store (3.3.3~test5) stable; urgency=medium
+
+  * 修复可能的内存泄漏问题
+  * 修复应用搜索为空但仍显示上一次搜索结果的问题
+  * 修复动画加载延后的问题
+  * 修复统计下载量卡主渲染线程的问题
+
+-- shenmo <shenmo@spark-app.store>  Fri, 30 Jan 2022 00:00:00 +0800
+
+
 spark-store (3.3.3~test4) stable; urgency=medium
 
   * Enable i386 arch support by default
diff --git a/src/main.cpp b/src/main.cpp
index 8ac03aa..e179772 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -20,7 +20,7 @@ DWIDGET_USE_NAMESPACE
 int main(int argc, char *argv[])
 {
     // Get build time
-    static const QString version = "Version 3.3.3~test4";
+    static const QString version = "Version 3.3.3";
     static const QDate buildDate = QLocale( QLocale::English ).toDate( QString(__DATE__).replace("  ", " 0"), "MMM dd yyyy");
     static const QTime buildTime = QTime::fromString(__TIME__, "hh:mm:ss");
 
@@ -49,7 +49,7 @@ int main(int argc, char *argv[])
     if (readConfig.value("build/version").toString() != version){
         qDebug() << "Spark Store has been updated!";
         QSettings *setConfig = new QSettings(QDir::homePath() + "/.config/spark-store/config.ini", QSettings::IniFormat);
-        setConfig->setValue("build/version", "Version 3.3.3~test4");
+        setConfig->setValue("build/version", "Version 3.3.3");
         setConfig->setValue("build/time", buildDate.toString("yyyy.MM.dd")+"-"+buildTime.toString());
         setConfig->deleteLater();
     }