From 7728363cdb2a94258b8dd936867530fe4310c82c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matou=C5=A1=20Ku=C4=8Dera?= Date: Thu, 8 Aug 2024 23:54:25 +0200 Subject: [PATCH] fix: exclude 1.20.3 --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 05a471c72ad0..f22df5205eea 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -107,11 +107,11 @@ val mappingConfig = buildMappingConfig { version( manifest .range("1.8.8", "1.21.1") { // change me - // exclude 1.20 and 1.20.5 - hotfixed versions + // exclude 1.20, 1.20.3 and 1.20.5 - hotfixed versions // exclude 1.16 and 1.10.1, they don't have most mappings and are basically not used at all // exclude 1.8.9, client-only update - no Spigot mappings, no thank you // exclude 1.9.1 and 1.9.3 - no mappings at all - exclude("1.16", "1.10.1", "1.8.9", "1.9.1", "1.9.3", "1.20", "1.20.5") + exclude("1.16", "1.10.1", "1.8.9", "1.9.1", "1.9.3", "1.20", "1.20.3", "1.20.5") // include only releases, no snapshots includeTypes(Version.Type.RELEASE)