Skip to content

Commit d2538b8

Browse files
committedOct 12, 2024··
release: v4.6.1
1 parent a41f807 commit d2538b8

File tree

4 files changed

+28
-8
lines changed

4 files changed

+28
-8
lines changed
 

‎.changelog/v4.6.1.md

Whitespace-only changes.

‎CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# v4.6.1
2+
3+
> Release & Pull Notes: [v4.6.1](https://github.com/simple-robot/simpler-robot/releases/tag/v4.6.1)
4+
5+
- feat(common-core): 增加 UUID 对 `kotlin.uuid.Uuid` 的兼容API ([`7f859de66`](https://github.com/simple-robot/simpler-robot/commit/7f859de66))
6+
- build(deps): bump kotlinx-serialization from 1.7.1 to 1.7.3 ([`a4b9f6a2a`](https://github.com/simple-robot/simpler-robot/commit/a4b9f6a2a))
7+
- build(deps): bump io.mockk:mockk from 1.13.12 to 1.13.13 ([`6f1fb1b1a`](https://github.com/simple-robot/simpler-robot/commit/6f1fb1b1a))
8+
- build(deps): bump org.jetbrains:annotations from 25.0.0 to 26.0.0 ([`389ed9fc2`](https://github.com/simple-robot/simpler-robot/commit/389ed9fc2))
9+
- bump(deps): Jetbrains annotation from 24.1.0 to 25.0.0 ([`50b57d674`](https://github.com/simple-robot/simpler-robot/commit/50b57d674))
10+
- bump(deps): Kotlin from 2.0.10 to 2.0.20 ([`3d0773e94..af72957f0`](https://github.com/simple-robot/simpler-robot/compare/3d0773e94..c40efb8e0))
11+
12+
<details><summary><code>3d0773e94..af72957f0</code></summary>
13+
14+
- [`3d0773e94`](https://github.com/simple-robot/simpler-robot/commit/3d0773e94)
15+
- [`af72957f0`](https://github.com/simple-robot/simpler-robot/commit/af72957f0)
16+
17+
</details>
18+
19+
- build(deps): bump com.github.gmazzo.buildconfig from 5.4.0 to 5.5.0 ([`c40efb8e0`](https://github.com/simple-robot/simpler-robot/commit/c40efb8e0))
20+
- build(deps): bump kotlinx-coroutines from 1.8.1 to 1.9.0 ([`55e62299d`](https://github.com/simple-robot/simpler-robot/commit/55e62299d))
21+
- build(deps): bump io.projectreactor:reactor-core from 3.6.9 to 3.6.10 ([`0835dafe7`](https://github.com/simple-robot/simpler-robot/commit/0835dafe7))
22+
- build(deps): bump io.projectreactor:reactor-test from 3.6.9 to 3.6.10 ([`130f3cefc`](https://github.com/simple-robot/simpler-robot/commit/130f3cefc))
23+
- build(deps): bump io.gitlab.arturbosch.detekt from 1.23.6 to 1.23.7 ([`d0a714465`](https://github.com/simple-robot/simpler-robot/commit/d0a714465))
24+
- build(deps): bump org.jetbrains.kotlinx:lincheck from 2.33 to 2.34 ([`97bfb334a`](https://github.com/simple-robot/simpler-robot/commit/97bfb334a))
25+
126
# v4.6.0
227

328
> Release & Pull Notes: [v4.6.0](https://github.com/simple-robot/simpler-robot/releases/tag/v4.6.0)

‎buildSrc/src/main/kotlin/P.kt

+2-7
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,9 @@ fun isSnapshot(): Boolean = _isSnapshot
4646
*/
4747
@Suppress("MemberVisibilityCanBePrivate")
4848
sealed class P(override val group: String) : ProjectDetail() {
49-
/*
50-
val groupProject = P::class.sealedSubclasses.mapNotNull { it.objectInstance }.associateBy { obj -> obj.group }
51-
project = groupProject[p.group] ?: error("unknown project group: ${p.group}")
52-
53-
*/
5449
companion object {
55-
const val VERSION = "4.6.0"
56-
const val NEXT_VERSION = "4.6.1"
50+
const val VERSION = "4.6.1"
51+
const val NEXT_VERSION = "4.6.2"
5752
const val SNAPSHOT_VERSION = "$VERSION-SNAPSHOT"
5853
const val NEXT_SNAPSHOT_VERSION = "$NEXT_VERSION-SNAPSHOT"
5954

0 commit comments

Comments
 (0)
Please sign in to comment.