Skip to content

Commit

Permalink
Merge pull request #130 from simple-robot/dev/main
Browse files Browse the repository at this point in the history
Release: v1.4.3
  • Loading branch information
ForteScarlet authored Oct 18, 2024
2 parents a188e9e + 2a8615c commit d757d5b
Show file tree
Hide file tree
Showing 10 changed files with 155 additions and 171 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,20 @@ jobs:
steps:
# 检出仓库代码
- uses: actions/checkout@v4
# setup Java
- uses: actions/setup-java@v4
with:
distribution: ${{ env.JAVA_DISTRIBUTION }}
java-version: ${{ env.JAVA_VERSION }}
cache: 'gradle'

# setup Gradle
- name: Publish releases
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: ${{ env.GRADLE_VERSION }}
arguments: createChangelog

# Create gitHub release
- name: Create Github Release
uses: softprops/action-gh-release@v2
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/P.kt
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ object P {
override val description: String get() = DESCRIPTION
override val homepage: String get() = HOMEPAGE

const val VERSION = "1.4.2"
const val NEXT_VERSION = "1.4.3"
const val VERSION = "1.4.3"
const val NEXT_VERSION = "1.4.4"

override val snapshotVersion = "$NEXT_VERSION-SNAPSHOT"
override val version = if (isSnapshot()) snapshotVersion else VERSION
Expand Down
20 changes: 10 additions & 10 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
[versions]
kotlin = "2.0.10"
kotlinx-coroutines = "1.8.1"
kotlinx-serialization = "1.7.1"
kotlin = "2.0.20"
kotlinx-coroutines = "1.9.0"
kotlinx-serialization = "1.7.3"
dokka = "1.9.20"
ktor = "2.3.12"
openjdk-jmh = "1.37"
log4j = "2.23.1"
log4j = "2.24.1"
# simbot
simbot = "4.6.0"
suspendTransform = "0.9.0"
simbot = "4.6.1"
suspendTransform = "2.0.20-0.9.3"
gradleCommon = "0.6.0"
# ksp
ksp = "2.0.10-1.0.24"
ksp = "2.0.20-1.0.25"
# https://square.github.io/kotlinpoet/
kotlinPoet = "1.18.1"
# https://mockk.io/
mockk = "1.13.12"
mockk = "1.13.13"
# https://detekt.dev/docs/intro
detekt = "1.23.6"
detekt = "1.23.7"

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

# jetbrains-annotation
jetbrains-annotations = "org.jetbrains:annotations:24.1.0"
jetbrains-annotations = "org.jetbrains:annotations:26.0.1"

# kotlinx-coroutines
kotlinx-coroutines-core = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" }
Expand Down
Loading

0 comments on commit d757d5b

Please sign in to comment.