Skip to content

Commit d757d5b

Browse files
authored
Merge pull request #130 from simple-robot/dev/main
Release: v1.4.3
2 parents a188e9e + 2a8615c commit d757d5b

File tree

10 files changed

+155
-171
lines changed

10 files changed

+155
-171
lines changed

.github/workflows/publish-release.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,20 @@ jobs:
8787
steps:
8888
# 检出仓库代码
8989
- uses: actions/checkout@v4
90+
# setup Java
91+
- uses: actions/setup-java@v4
92+
with:
93+
distribution: ${{ env.JAVA_DISTRIBUTION }}
94+
java-version: ${{ env.JAVA_VERSION }}
95+
cache: 'gradle'
96+
97+
# setup Gradle
98+
- name: Publish releases
99+
uses: gradle/actions/setup-gradle@v3
100+
with:
101+
gradle-version: ${{ env.GRADLE_VERSION }}
102+
arguments: createChangelog
103+
90104
# Create gitHub release
91105
- name: Create Github Release
92106
uses: softprops/action-gh-release@v2

buildSrc/src/main/kotlin/P.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ object P {
3737
override val description: String get() = DESCRIPTION
3838
override val homepage: String get() = HOMEPAGE
3939

40-
const val VERSION = "1.4.2"
41-
const val NEXT_VERSION = "1.4.3"
40+
const val VERSION = "1.4.3"
41+
const val NEXT_VERSION = "1.4.4"
4242

4343
override val snapshotVersion = "$NEXT_VERSION-SNAPSHOT"
4444
override val version = if (isSnapshot()) snapshotVersion else VERSION

gradle/libs.versions.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
[versions]
2-
kotlin = "2.0.10"
3-
kotlinx-coroutines = "1.8.1"
4-
kotlinx-serialization = "1.7.1"
2+
kotlin = "2.0.20"
3+
kotlinx-coroutines = "1.9.0"
4+
kotlinx-serialization = "1.7.3"
55
dokka = "1.9.20"
66
ktor = "2.3.12"
77
openjdk-jmh = "1.37"
8-
log4j = "2.23.1"
8+
log4j = "2.24.1"
99
# simbot
10-
simbot = "4.6.0"
11-
suspendTransform = "0.9.0"
10+
simbot = "4.6.1"
11+
suspendTransform = "2.0.20-0.9.3"
1212
gradleCommon = "0.6.0"
1313
# ksp
14-
ksp = "2.0.10-1.0.24"
14+
ksp = "2.0.20-1.0.25"
1515
# https://square.github.io/kotlinpoet/
1616
kotlinPoet = "1.18.1"
1717
# https://mockk.io/
18-
mockk = "1.13.12"
18+
mockk = "1.13.13"
1919
# https://detekt.dev/docs/intro
20-
detekt = "1.23.6"
20+
detekt = "1.23.7"
2121

2222
[libraries]
2323
# simbot
@@ -36,7 +36,7 @@ simbot-common-ktor-inputfile = { group = "love.forte.simbot.common", name = "sim
3636
simbot-gradle = { group = "love.forte.simbot.gradle", name = "simbot-gradle-suspendtransforms", version.ref = "simbot" }
3737

3838
# jetbrains-annotation
39-
jetbrains-annotations = "org.jetbrains:annotations:24.1.0"
39+
jetbrains-annotations = "org.jetbrains:annotations:26.0.1"
4040

4141
# kotlinx-coroutines
4242
kotlinx-coroutines-core = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" }

0 commit comments

Comments
 (0)