diff --git a/README.md b/README.md
index 87c3048e..75632274 100644
--- a/README.md
+++ b/README.md
@@ -40,7 +40,7 @@ Maven 导入:
 <dependency>
     <groupId>com.github.hydevelop</groupId>
     <artifactId>PicqBotX</artifactId>
-    <version>1.3.0.387</version>
+    <version>1.3.2.405</version>
 </dependency>
 ```
 
@@ -67,13 +67,13 @@ allprojects {
 
 ```gradle
 dependencies {
-    implementation 'com.github.hydevelop:PicqBotX:1.3.0.387'
+    implementation 'com.github.hydevelop:PicqBotX:1.3.2.405'
 }
 ```
 
 <!-- 每次更新都要手动改这些版本号好烦的_(:з」∠)_... -->
 
-#### [其他导入(SBT / Leiningen)](https://jitpack.io/#hydevelop/PicqBotX/1.3.0.387)
+#### [其他导入(SBT / Leiningen)](https://jitpack.io/#hydevelop/PicqBotX/1.3.2.405)
 
 <br>
 
@@ -386,7 +386,7 @@ public class CommandVersion implements EverywhereCommand // 实现EverywhereComm
     {
         // 处理, 返回值会自动回复回去
         // 这里因为这个指令是用来查版本的, 所以直接返回字符串了
-        return "TestBot - PicqBotX v1.3.0.387";
+        return "TestBot - PicqBotX v1.3.2.405";
     }
 }
 ```
diff --git a/pom.xml b/pom.xml
index 2d950d29..c9f8bd1f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
 
     <groupId>cc.moecraft</groupId>
     <artifactId>PicqBotX</artifactId>
-    <version>1.3.0.387</version>
+    <version>1.3.2.405</version>
 
     <properties>
         <maven.compiler.target>1.8</maven.compiler.target>
diff --git a/src/test/java/cc/moecraft/test/icq/commands/CommandVersion.java b/src/test/java/cc/moecraft/test/icq/commands/CommandVersion.java
index 050f325d..2475a024 100644
--- a/src/test/java/cc/moecraft/test/icq/commands/CommandVersion.java
+++ b/src/test/java/cc/moecraft/test/icq/commands/CommandVersion.java
@@ -41,7 +41,7 @@ public String run(EventMessage event, User sender, String command, ArrayList<Str
 
         // 这里因为这个指令是用来查版本的, 所以直接返回字符串了
         return new MessageBuilder()
-                .add("TestBot - PicqBotX v1.3.0.387").newLine()
+                .add("TestBot - PicqBotX v1.3.2.405").newLine()
                 .add("- 酷Q ").add(versionInfo.getCoolqEdition()).add(" HTTP插件: ")
                     .add(versionInfo.getPluginVersion()).add(" b").add(versionInfo.getPluginBuildNumber()).newLine()
                 .add("- 运行状态: Good: ").add(status.getGood()).add(", ").add(status.getPluginsGood())