Skip to content
This repository has been archived by the owner on Feb 11, 2023. It is now read-only.

Commit

Permalink
[U] Pre-Release v3.0.4.810
Browse files Browse the repository at this point in the history
  • Loading branch information
hykilpikonna committed Mar 25, 2019
1 parent 6d901ce commit 6c1c574
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Maven 导入:
<dependency>
<groupId>com.github.hydevelop</groupId>
<artifactId>PicqBotX</artifactId>
<version>3.0.2.755</version>
<version>3.0.4.810</version>
</dependency>
```

Expand All @@ -67,13 +67,13 @@ allprojects {

```gradle
dependencies {
implementation 'com.github.hydevelop:PicqBotX:3.0.2.755'
implementation 'com.github.hydevelop:PicqBotX:3.0.4.810'
}
```

<!-- 每次更新都要手动改这些版本号好烦的_(:з」∠)_... -->

#### [其他导入(SBT / Leiningen)](https://jitpack.io/#hydevelop/PicqBotX/3.0.2.755)
#### [其他导入(SBT / Leiningen)](https://jitpack.io/#hydevelop/PicqBotX/3.0.4.810)

<br>

Expand Down Expand Up @@ -395,7 +395,7 @@ public class CommandVersion implements EverywhereCommand // 实现EverywhereComm
{
// 处理, 返回值会自动回复回去
// 这里因为这个指令是用来查版本的, 所以直接返回字符串了
return "TestBot - PicqBotX v3.0.2.755";
return "TestBot - PicqBotX v3.0.4.810";
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>cc.moecraft</groupId>
<artifactId>PicqBotX</artifactId>
<version>3.0.2.755</version>
<version>3.0.4.810</version>

<properties>
<maven.compiler.target>1.8</maven.compiler.target>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/cc/moecraft/icq/PicqConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class PicqConstants
// 版本常量 | Version constant

/** 当前版本 */
public static final String VERSION = "3.0.2.755";
public static final String VERSION = "3.0.4.810";

/** 兼容版本检测Regex */
public static final String HTTP_API_VERSION_DETECTION = ".*4.8.*";
Expand Down

0 comments on commit 6c1c574

Please sign in to comment.