Skip to content

Commit 3aff4cf

Browse files
committed
publish: 🔖 v3.0.0-beta-M3
1 parent 63f23b6 commit 3aff4cf

File tree

3 files changed

+46
-2
lines changed

3 files changed

+46
-2
lines changed

.changelog/v3.0.0-beta-M3.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
**组件更新:**
2+
3+
由于此版本存在大面积不兼容更新,因此下列各组件会以当前版本为目标在三日内进行同步更新。
4+
5+
* [mirai组件](https://github.com/simple-robot/simbot-component-mirai)
6+
* [Kook组件](https://github.com/simple-robot/simbot-component-kook)
7+
* [QQ频道组件](https://github.com/simple-robot/simbot-component-tencent-guild)
8+
9+
**仓库参考:**
10+
11+
| **模块** | **repo1.maven** | **search.maven** |
12+
|----------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|
13+
| simbot-api | [simbot-api: v3.0.0-beta-M3](https://repo1.maven.org/maven2/love/forte/simbot/simbot-api/3.0.0-beta-M3) | [simbot-api: v3.0.0-beta-M3](https://search.maven.org/artifact/love.forte.simbot/simbot-api/3.0.0-beta-M3/jar) |
14+
| simbot-core | [simbot-core: v3.0.0-beta-M3](https://repo1.maven.org/maven2/love/forte/simbot/simbot-core/3.0.0-beta-M3) | [simbot-core: v3.0.0-beta-M3](https://search.maven.org/artifact/love.forte.simbot/simbot-core/3.0.0-beta-M3/jar) |
15+
| simbot-logger | [simbot-logger: v3.0.0-beta-M3](https://repo1.maven.org/maven2/love/forte/simbot/simbot-logger/3.0.0-beta-M3) | [simbot-logger: v3.0.0-beta-M3](https://search.maven.org/artifact/love.forte.simbot/simbot-logger/3.0.0-beta-M3/jar) |
16+
| simboot-api | [simboot-api: v3.0.0-beta-M3](https://repo1.maven.org/maven2/love/forte/simbot/boot/simboot-api/3.0.0-beta-M3) | [simboot-api: v3.0.0-beta-M3](https://search.maven.org/artifact/love.forte.simbot.boot/simboot-api/3.0.0-beta-M3/jar) |
17+
| simboot-core | [simboot-core: v3.0.0-beta-M3](https://repo1.maven.org/maven2/love/forte/simbot/boot/simboot-core/3.0.0-beta-M3) | [simboot-core: v3.0.0-beta-M3](https://search.maven.org/artifact/love.forte.simbot.boot/simboot-core/3.0.0-beta-M3/jar) |
18+
| simboot-core-annotation | [simboot-core-annotation: v3.0.0-beta-M3](https://repo1.maven.org/maven2/love/forte/simbot/boot/simboot-core-annotation/3.0.0-beta-M3) | [simboot-core-annotation: v3.0.0-beta-M3](https://search.maven.org/artifact/love.forte.simbot.boot/simboot-core-annotation/3.0.0-beta-M3/jar) |
19+
| simboot-core-spring-boot-starter | [simboot-core-spring-boot-starter: v3.0.0-beta-M3](https://repo1.maven.org/maven2/love/forte/simbot/boot/simboot-core-spring-boot-starter/3.0.0-beta-M3) | [simboot-core-spring-boot-starter: v3.0.0-beta-M3](https://search.maven.org/artifact/love.forte.simbot.boot/simboot-core-spring-boot-starter/3.0.0-beta-M3/jar) |
20+
21+
22+

buildSrc/build.gradle.kts

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2+
13
plugins {
24
`kotlin-dsl`
35
}
@@ -19,4 +21,10 @@ dependencies {
1921

2022
// see https://github.com/gradle-nexus/publish-plugin
2123
implementation("io.github.gradle-nexus:publish-plugin:1.1.0")
24+
}
25+
26+
val compileKotlin: KotlinCompile by tasks
27+
28+
compileKotlin.kotlinOptions {
29+
freeCompilerArgs = listOf("-Xinline-classes")
2230
}

buildSrc/src/main/kotlin/Env.kt

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
1+
/*
2+
* Copyright (c) 2022 ForteScarlet <[email protected]>
3+
*
4+
* 本文件是 simply-robot (或称 simple-robot 3.x 、simbot 3.x ) 的一部分。
5+
*
6+
* simply-robot 是自由软件:你可以再分发之和/或依照由自由软件基金会发布的 GNU 通用公共许可证修改之,无论是版本 3 许可证,还是(按你的决定)任何以后版都可以。
7+
*
8+
* 发布 simply-robot 是希望它能有用,但是并无保障;甚至连可销售和符合某个特定的目的都不保证。请参看 GNU 通用公共许可证,了解详情。
9+
*
10+
* 你应该随程序获得一份 GNU 通用公共许可证的复本。如果没有,请看:
11+
* https://www.gnu.org/licenses
12+
* https://www.gnu.org/licenses/gpl-3.0-standalone.html
13+
* https://www.gnu.org/licenses/lgpl-3.0-standalone.html
14+
*
15+
*/
16+
117
object Env {
218
const val IS_SNAPSHOT = "SIMBOT_IS_SNAPSHOT"
319
const val SNAPSHOT_ONLY = "SIMBOT_SNAPSHOT_ONLY"
420
const val RELEASES_ONLY = "SIMBOT_RELEASES_ONLY"
5-
6-
721
}

0 commit comments

Comments
 (0)