We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2397cb6 commit 31b5a83Copy full SHA for 31b5a83
src/main/scala/io/sdkman/changelogs/DetektMigrations.scala
@@ -6,15 +6,12 @@ import com.mongodb.client.MongoDatabase
6
@ChangeLog(order = "079")
7
class DetektMigrations {
8
@ChangeSet(
9
- order = "002",
10
- id = "002_add_detect_1_23_x",
+ order = "003",
+ id = "003_add_detect_1_23_3",
11
author = "helpermethod"
12
)
13
- def migration002(implicit db: MongoDatabase): Unit = {
14
- List(
15
- "1.23.0",
16
- "1.23.1"
17
- ).foreach { version =>
+ def migration003(implicit db: MongoDatabase): Unit = {
+ val version = "1.23.3"
18
Version(
19
candidate = "detekt",
20
version = version,
@@ -23,5 +20,4 @@ class DetektMigrations {
23
).validate()
24
21
.insert()
25
22
}
26
- }
27
0 commit comments