Skip to content

Commit

Permalink
update version to v3.3.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ForteScarlet committed Dec 26, 2023
1 parent 1d143b0 commit c17a3ad
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 18 deletions.
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
kotlinx-coroutines = "1.7.0"
kotlinx-serialization = "1.5.0"
kotlinx-coroutines = "1.7.3"
kotlinx-serialization = "1.6.2"
spring-boot = "2.7.5"
openjdk-jmh = "1.35"
forte-di = "0.0.3"
Expand Down
2 changes: 1 addition & 1 deletion simbot-component-kook-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ kotlin {

// Tier 2
linuxX64()
linuxArm64()
// linuxArm64()
watchosSimulatorArm64()
watchosX64()
watchosArm32()
Expand Down
18 changes: 4 additions & 14 deletions simbot-component-kook-stdlib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ kotlin {

// Tier 2
linuxX64()
linuxArm64()
// linuxArm64()
watchosSimulatorArm64()
watchosX64()
watchosArm32()
Expand All @@ -98,11 +98,13 @@ kotlin {

sourceSets {
commonMain.dependencies {
compileOnly(simbotUtilAnnotations)
api(project(":simbot-component-kook-api"))
api(simbotLogger)
api(simbotUtilLoop)
api(simbotUtilSuspendTransformer)
compileOnly(simbotUtilAnnotations)
api(libs.ktor.serialization.kotlinx.json)
api(libs.kotlinx.serialization.json)
api(libs.kotlinx.coroutines.core)
api(libs.ktor.client.ws)
api("org.jetbrains.kotlinx:atomicfu:${libs.versions.atomicfu.get()}")
Expand Down Expand Up @@ -138,15 +140,3 @@ atomicfu {
jvmVariant = "FU"
}


// suppress all?
//tasks.withType<org.jetbrains.dokka.gradle.DokkaTaskPartial>().configureEach {
// dokkaSourceSets.configureEach {
// suppress.set(true)
// perPackageOption {
// suppress.set(true)
// }
// }
//}


Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public class BotConfiguration {
* 针对 [HttpClientEngineConfig] 中的通用默认属性的配置。
*
*/
@Serializable
@kotlinx.serialization.Serializable
public data class EngineConfiguration(
/**
* 参考 [HttpClientEngineConfig.threadsCount][io.ktor.client.engine.HttpClientEngineConfig.threadsCount]
Expand Down

0 comments on commit c17a3ad

Please sign in to comment.