Skip to content

Commit

Permalink
build: 2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cssxsh committed Sep 7, 2023
1 parent f3f00ee commit 9d73fc2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# 2.5.0 (23/08/..)
# 2.5.1(23/09/08)

1. feat: setup chrome command

# 2.5.0 (23/08/12)

1. update: mirai 2.15
2. feat: fetchChromeVersion
3. fix: setupChrome

# 2.4.0 (23/06/18)

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ mirai {
* `/selenium status` 驱动进程状态
* `/selenium firefox` 下载解压 firefox
* `/selenium chromium` 下载解压 chromium
* `/selenium chrome` 下载解压 chrome
* `/selenium chart` 测试 图表绘制功能,将以群员入群事件和发言时间为数据集

## 配置
Expand Down
9 changes: 3 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ plugins {
kotlin("jvm") version "1.8.10"
kotlin("plugin.serialization") version "1.8.10"

id("net.mamoe.mirai-console") version "2.15.0"
id("net.mamoe.mirai-console") version "2.16.0-RC"
id("me.him188.maven-central-publish") version "1.0.0-dev-3"
id("me.him188.kotlin-jvm-blocking-bridge") version "2.2.0-180.1"
}

group = "xyz.cssxsh.mirai"
version = "2.5.0"
version = "2.5.1"

mavenCentralPublish {
useCentralS01()
Expand All @@ -24,7 +24,6 @@ mavenCentralPublish {
repositories {
mavenLocal()
mavenCentral()
maven("https://repo.mirai.mamoe.net/snapshots")
}

dependencies {
Expand All @@ -35,7 +34,7 @@ dependencies {
testImplementation(kotlin("test"))
testImplementation("org.icepear.echarts:echarts-java:1.0.7")
//
implementation(platform("net.mamoe:mirai-bom:2.16.0-dev-133"))
implementation(platform("net.mamoe:mirai-bom:2.16.0-RC"))
testImplementation("net.mamoe:mirai-logging-slf4j")
testImplementation("net.mamoe:mirai-console-compiler-common")
//
Expand All @@ -53,8 +52,6 @@ kotlin {

mirai {
jvmTarget = JavaVersion.VERSION_11
coreVersion = "2.16.0-dev-133"
consoleVersion = "2.16.0-dev-133"
if (System.getenv("CI").toBoolean()) {
useTestConsoleFrontEnd = null
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public object MiraiSeleniumPlugin : KotlinPlugin(
JvmPluginDescription(
id = "xyz.cssxsh.mirai.plugin.mirai-selenium-plugin",
name = "mirai-selenium-plugin",
version = "2.5.0"
version = "2.5.1"
) {
author("cssxsh")
}
Expand Down

0 comments on commit 9d73fc2

Please sign in to comment.