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

Commit d859c89

Browse files
committedJun 15, 2018
[U] 更新版本号
1 parent 96742eb commit d859c89

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
 

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Maven 导入:
4040
<dependency>
4141
<groupId>com.github.hydevelop</groupId>
4242
<artifactId>PicqBotX</artifactId>
43-
<version>1.0.4.4</version>
43+
<version>1.0.4.5</version>
4444
</dependency>
4545
```
4646

@@ -67,13 +67,13 @@ allprojects {
6767

6868
```gradle
6969
dependencies {
70-
implementation 'com.github.hydevelop:PicqBotX:1.0.4.4'
70+
implementation 'com.github.hydevelop:PicqBotX:1.0.4.5'
7171
}
7272
```
7373

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

76-
#### [其他导入(SBT / Leiningen)](https://jitpack.io/#hydevelop/PicqBotX/1.0.4.4)
76+
#### [其他导入(SBT / Leiningen)](https://jitpack.io/#hydevelop/PicqBotX/1.0.4.5)
7777

7878
<br>
7979

@@ -384,7 +384,7 @@ public class CommandVersion implements EverywhereCommand // 实现EverywhereComm
384384
{
385385
// 处理, 返回值会自动回复回去
386386
// 这里因为这个指令是用来查版本的, 所以直接返回字符串了
387-
return "TestBot - PicqBotX v1.0.4.4";
387+
return "TestBot - PicqBotX v1.0.4.5";
388388
}
389389
}
390390
```

‎pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>cc.moecraft</groupId>
88
<artifactId>PicqBotX</artifactId>
9-
<version>1.0.4.4</version>
9+
<version>1.0.4.5</version>
1010

1111
<properties>
1212
<maven.compiler.target>1.8</maven.compiler.target>

‎src/test/java/cc/moecraft/test/icq/commands/CommandVersion.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public String run(EventMessage event, User sender, String command, ArrayList<Str
4242

4343
// 这里因为这个指令是用来查版本的, 所以直接返回字符串了
4444
return new MessageBuilder()
45-
.add("TestBot - PicqBotX v1.0.4.4").newLine()
45+
.add("TestBot - PicqBotX v1.0.4.5").newLine()
4646
.add("- 酷Q ").add(versionInfo.getCoolqEdition()).add(" HTTP插件: ")
4747
.add(versionInfo.getPluginVersion()).add(" b").add(versionInfo.getPluginBuildNumber()).newLine()
4848
.add("- 运行状态: Good: ").add(status.getGood()).add(", ").add(status.getPluginsGood())

0 commit comments

Comments
 (0)
This repository has been archived.