Skip to content

Commit

Permalink
Declare 1.20.3 support in publication where applicable
Browse files Browse the repository at this point in the history
  • Loading branch information
TBlueF committed Dec 6, 2023
1 parent 78904b4 commit 8104f99
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion implementations/fabric-1.20/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ modrinth {
.readText()
.replace("{version}", project.version.toString()))
uploadFile.set(tasks.findByName("remappedShadowJar"))
gameVersions.addAll("1.20", "1.20.1", "1.20.2")
gameVersions.addAll("1.20", "1.20.1", "1.20.2", "1.20.3")
dependencies {
required.project("P7dR8mSH") // Fabric API
}
Expand All @@ -168,6 +168,7 @@ curseforge {
addGameVersion("1.20")
addGameVersion("1.20.1")
addGameVersion("1.20.2")
addGameVersion("1.20.3")

mainArtifact(tasks.findByName("remappedShadowJar"), closureOf<CurseArtifact> {
relations(closureOf<CurseRelation> {
Expand Down
2 changes: 1 addition & 1 deletion implementations/paper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ hangarPublish {
register(io.papermc.hangarpublishplugin.model.Platforms.PAPER) {
jar.set(tasks.shadowJar.flatMap { it.archiveFile })
platformVersions.set(listOf(
"1.20.1", "1.20.2"
"1.20.1", "1.20.2", "1.20.3"
))
}
}
Expand Down
2 changes: 1 addition & 1 deletion implementations/spigot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ modrinth {
"1.17", "1.17.1",
"1.18", "1.18.1", "1.18.2",
"1.19", "1.19.1", "1.19.2", "1.19.3", "1.19.4",
"1.20", "1.20.1", "1.20.2"
"1.20", "1.20.1", "1.20.2", "1.20.3"
)
}

Expand Down

0 comments on commit 8104f99

Please sign in to comment.