Skip to content

Commit fb9894d

Browse files
committed
1.21.8
1 parent 0017ef2 commit fb9894d

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 4.4.10
2+
Support from 1.20 to 1.21.8.
3+
14
# 4.4.8
25
Fix hangar link
36

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ plugins {
99
}
1010

1111
group="fr.formiko.flagsh"
12-
version="4.4.9"
12+
version="4.4.10"
1313
description="Display banners as flags."
14-
val mainMinecraftVersion = "1.21.7"
15-
val supportedMinecraftVersions = "1.20 - 1.21.7"
14+
val mainMinecraftVersion = "1.21.8"
15+
val supportedMinecraftVersions = "1.20 - 1.21.8"
1616
val townyVersion = "0.101.0.2"
1717
val jacksonVersion = "2.18.2"
1818

@@ -185,7 +185,7 @@ hangarPublish { // ./gradlew publishPluginPublicationToHangar
185185

186186
// Do an array of game versions from supportedMinecraftVersions
187187
fun expandMinecraftVersions(range: String): List<String> {
188-
val latestPatches = mapOf("1.20" to 6, "1.21" to 7)
188+
val latestPatches = mapOf("1.20" to 6, "1.21" to 8)
189189

190190
fun String.toMinorAndPatch() = split('.').let {
191191
if (it.size == 2) it.joinToString(".") to 0 else "${it[0]}.${it[1]}" to it[2].toInt()

0 commit comments

Comments
 (0)