Skip to content

Commit

Permalink
chore: Remove unsupported versions (#702)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Weiler authored Aug 13, 2024
1 parent f3bc785 commit 1004a34
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/main/scala/io/sdkman/changelogs/JExtractMigrations.scala
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,18 @@ class JExtractMigrations {
websiteUrl = "https://jdk.java.net/jextract/"
).insert()
}

@ChangeSet(
order = "004",
id = "004_remove_unsupported_versions",
author = "helpermethod"
)
def migration004(implicit db: MongoDatabase): Unit = {
List("21-jextract+1-2", "20-jextract+1-2", "19-jextract+2-3")
.foreach { version =>
List(Linux64, MacARM64, MacOSX, Windows).foreach { platform =>
removeVersion("jextract", version, platform)
}
}
}
}

0 comments on commit 1004a34

Please sign in to comment.