Skip to content

Commit

Permalink
release: v4.0.0-RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
ForteScarlet committed Jun 2, 2024
1 parent 0ae94db commit f555bb1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
Empty file added .changelog/v4.0.0-RC2.md
Empty file.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v4.0.0-RC2

> Release & Pull Notes: [v4.0.0-RC2](https://github.com/simple-robot/simpler-robot/releases/tag/v4.0.0-RC2)
- fix: Services.addProviderExceptJvm 的jvm判断条件与实际情况相反 ([`ba555b22`](https://github.com/simple-robot/simpler-robot/commit/ba555b22))

# v4.0.0-RC1

> Release & Pull Notes: [v4.0.0-RC1](https://github.com/simple-robot/simpler-robot/releases/tag/v4.0.0-RC1)
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 @@ -48,7 +48,7 @@ sealed class P(override val group: String) : ProjectDetail() {
/*
val groupProject = P::class.sealedSubclasses.mapNotNull { it.objectInstance }.associateBy { obj -> obj.group }
project = groupProject[p.group] ?: error("unknown project group: ${p.group}")
*/
companion object {
const val GROUP = "love.forte.simbot"
Expand Down Expand Up @@ -85,7 +85,7 @@ sealed class P(override val group: String) : ProjectDetail() {
val versionWithoutSnapshot: Version

init {
val mainVersion = version(4, 0, 0) - version("RC1")
val mainVersion = version(4, 0, 0) - version("RC2")

fun initVersionWithoutSnapshot(status: Version?): Version = if (status == null) {
mainVersion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,5 @@ class IDTests {
Json.decodeFromString(UUID.StructureSerializer, """{"leastSignificantBits":$lv}""")
}
assertIs<MissingFieldException>(err)
err.printStackTrace()
}
}

0 comments on commit f555bb1

Please sign in to comment.